diff options
Diffstat (limited to 'src/cmd/Makefile')
-rw-r--r-- | src/cmd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cmd/Makefile b/src/cmd/Makefile new file mode 100644 index 0000000..2d1c7f8 --- /dev/null +++ b/src/cmd/Makefile @@ -0,0 +1,10 @@ +LDSCRIPT=../../sys/arch/$(TARGET)/conf/user.ld + +.PHONY: all +all: + cd test/; LDSCRIPT=$(LDSCRIPT) CC=$(CC) ASM=$(ASM) \ + LD=$(ASM) SYSROOT=$(SYSROOT) make + +.PHONY: clean +clean: + cd test/; make clean |