Add tfs remove part
[thunix.git] / init / Makefile
blob1c1397eea941a7472cb6b75d18f51e02fb5c7b31
1 AS = as -I../include
2 CC = gcc -nostdinc -I../include -Wall -Wno-unused
3 LD = ld
4 LDFLAGS = --oformat binary -N
6 OBJS = init.o
8 init.o: init.o
10 .c.s:
11 ${CC} -S -o $*.s $<
12 .s.o:
13 ${AS} -o $*.o $<
14 .c.o:
15 ${CC} -c -o $*.o $<
18 clean:
19 rm -f *.o *.map *~