diff options
Diffstat (limited to 'src/modules/test/Makefile')
-rw-r--r-- | src/modules/test/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/modules/test/Makefile b/src/modules/test/Makefile new file mode 100644 index 0000000..105aa54 --- /dev/null +++ b/src/modules/test/Makefile @@ -0,0 +1,32 @@ +.PHONY: clean, mrproper + +CC = gcc +CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -I ../../library + +LD = ld +LDFLAGS = -T ../../library/link.ld -L ../../library + +Objects = main.o +Outfile = test.elf + +all: $(Outfile) + echo "* Done with $(Outfile)" + +rebuild: mrproper all + +$(Outfile): $(Objects) + echo "* Linking $@..." + $(LD) $(LDFLAGS) -o $@ $^ + +%.o: %.c + $(CC) $(CFLAGS) -c $< -o $@ + +clean: + echo "* Removing objects..." + rm *.o || exit 0 + rm $(Objects) || exit 0 + +mrproper: clean + rm *.elf || exit 0 + rm $(Outfile) || exit 0 + |