summaryrefslogtreecommitdiffstats
path: root/third_party/iniparser/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/iniparser/test/Makefile')
-rw-r--r--third_party/iniparser/test/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/third_party/iniparser/test/Makefile b/third_party/iniparser/test/Makefile
deleted file mode 100644
index aa8fcb24b5..0000000000
--- a/third_party/iniparser/test/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# iniparser tests Makefile
-#
-
-CC = gcc
-CFLAGS = -g -I../src
-LFLAGS = -L.. -liniparser
-AR = ar
-ARFLAGS = rcv
-RM = rm -f
-
-
-default: all
-
-all: iniexample
-
-iniexample: iniexample.c
- $(CC) $(CFLAGS) -o iniexample iniexample.c -I../src -L.. -liniparser
-
-clean veryclean:
- $(RM) iniexample example.ini
-
-
-