removed old tests
[smdp.git] / test / Makefile
diff --git a/test/Makefile b/test/Makefile
deleted file mode 100644 (file)
index 3a457e0..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-# set some compiler flags
-CFLAGS=-g -Wall -lncurses
-
-# find *.c in the current directory
-SOURCES=$(wildcard *.c)
-
-# define the output objects by replacing .c with .o
-TARGETS=$(SOURCES:.c=)
-
-# this will make all objects
-all: $(TARGETS) 
-
-# each objects will be build by a *.c file
-#%.o: %.c
-%: %.c
-       cc $(CFLAGS) -o $@ $^
-
-# this will delete all objects
-# if not all objects are there, they will be compiled first
-clean: $(TARGETS)
-       rm -f $^
-