Remove stale Makefile in tests/src/
authornorly <ny-git@enpas.org>
Thu, 27 Jun 2013 00:08:53 +0000 (01:08 +0100)
committernorly <ny-git@enpas.org>
Thu, 27 Jun 2013 00:08:53 +0000 (01:08 +0100)
tests/src/Makefile [deleted file]

diff --git a/tests/src/Makefile b/tests/src/Makefile
deleted file mode 100644 (file)
index 1a2b177..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-CFLAGS := -Wall -pedantic
-EXES := putsmain putsmainsub brkmain
-OBJS := puts_noarg.o puts_alternative.o puts_data.o
-TARGETS := $(EXES) $(OBJS)
-
-
-all: $(TARGETS)
-
-
-putsmain: putsmain.c
-       gcc $(CFLAGS) $^ -o $@
-
-putsmainsub: putsmainsub.c
-       gcc $(CFLAGS) $^ -o $@
-
-.c.o:
-       gcc $(CFLAGS) -c $< -o $@
-
-
-.PHONY: clean
-clean:
-       rm -f $(TARGETS)