summaryrefslogtreecommitdiff
path: root/src/grapes/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/grapes/test/Makefile')
-rw-r--r--src/grapes/test/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/grapes/test/Makefile b/src/grapes/test/Makefile
deleted file mode 100644
index ddcc36f..0000000
--- a/src/grapes/test/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-.PHONY: clean, mrproper
-
-CC = gcc
-CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra
-
-LD = ld
-LDFLAGS = -T ../link.ld
-
-Objects = main.o
-Outfile = test
-
-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 $(Objects)
-
-mrproper: clean
- rm $(Outfile)
-