Implement sys_execve call
[thunix.git] / boot / Makefile
blob60383df9794d21f184f8b43cb09071d1f4f50189
1 AS = as -I../include
2 OBJS = bootsect.o head.o
4 DIRNAME = boot
6 all: bootsect.o head.o
8 .s.o:
9 @printf "%8s %s\n" "AS" ${DIRNAME}/$@
10 ${AS} -o $*.o $<
12 clean:
13 @rm -f *.o *.map *~