aboutsummaryrefslogtreecommitdiffstats
path: root/egraph/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'egraph/tests/Makefile')
-rw-r--r--egraph/tests/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/egraph/tests/Makefile b/egraph/tests/Makefile
deleted file mode 100644
index 8b70170..0000000
--- a/egraph/tests/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-CFLAGS += -Wall -g
-CFLAGS += $(shell pkg-config --libs --cflags igraph)
-CFLAGS += $(shell pkg-config --libs --cflags efx)
-CFLAGS += -L../ -legraph -lecore_evas
-
-SOURCES = $(shell echo *.c)
-OBJECTS = $(SOURCES:.c=.o)
-TARGETS = $(SOURCES:.c=)
-
-all: $(TARGETS)
-
-run: $(TARGETS)
- @count=0 ;\
- errors=0 ;\
- for test in $(TARGETS); do \
- echo =============================================================================== ;\
- echo $$test ;\
- LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:../ ./$$test ;\
- if [ $$? -eq 0 ]; then \
- echo OK ;\
- else \
- echo FAILED ;\
- errors=$$(($$errors + 1)) ;\
- fi ;\
- count=$$(($$count + 1)) ;\
- done ;\
- echo =============================================================================== ;\
- echo "$$count tests executed, $$errors errors" ;\
- exit $$errors
-
-clean:
- rm -f $(TARGETS) $(OBJECTS)