summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-06-27 01:08:53 +0100
committernorly <ny-git@enpas.org>2013-06-27 01:08:53 +0100
commit6bb90a2a327e7005a15c584ec00818b8f485121d (patch)
tree0e41197c3a7ecb0914c508876dae2049c0d807f9 /tests
parent1ca19c5484ee0f18a3701b3f98ac8ca43df8b505 (diff)
Remove stale Makefile in tests/src/
Diffstat (limited to 'tests')
-rw-r--r--tests/src/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/src/Makefile b/tests/src/Makefile
deleted file mode 100644
index 1a2b177..0000000
--- a/tests/src/Makefile
+++ /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)