summaryrefslogtreecommitdiffstats
path: root/third_party/iniparser/test/Makefile
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2014-08-13 16:41:33 -0700
committerJeremy Allison <jra@samba.org>2014-08-14 23:52:07 +0200
commitc134f02d4c4d5af9c54fc2b8ac6bea2809d1d3a4 (patch)
tree510eb488a71b3c28959c0abea6719f043ef28ab8 /third_party/iniparser/test/Makefile
parentdd383d4106e70d8015db1ac2a7ca5ce1309ffaae (diff)
downloadsamba-c134f02d4c4d5af9c54fc2b8ac6bea2809d1d3a4.tar.gz
samba-c134f02d4c4d5af9c54fc2b8ac6bea2809d1d3a4.tar.xz
samba-c134f02d4c4d5af9c54fc2b8ac6bea2809d1d3a4.zip
Remove iniparser.
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu Aug 14 23:52:07 CEST 2014 on sn-devel-104
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
-
-
-