diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..69beadf --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +PROGNAME=$(shell pwd | xargs basename) + +$(PROGNAME): main.o + ld -o $@ $< + +%.o: %.s syscall.s + as -o $@ $< + +syscall.s: /usr/include/asm/unistd_64.h + @echo create $@ from $< + @awk -f syscall.awk $< > $@ + +clean: + @echo cleaning... + @rm -f syscall.s *~ *.o core* |
