aboutsummaryrefslogtreecommitdiff
path: root/test/postinstall/testcpp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/postinstall/testcpp/Makefile')
-rw-r--r--test/postinstall/testcpp/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/postinstall/testcpp/Makefile b/test/postinstall/testcpp/Makefile
deleted file mode 100644
index d6c47e65..00000000
--- a/test/postinstall/testcpp/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-PROGRAM = testcpp
-OBJECTS = $(addsuffix .o,$(PROGRAM))
-
-override CXXFLAGS += -std=c++11 -fvisibility=hidden -g -Wall -Werror $(shell pkg-config proj --cflags)
-override LDFLAGS += $(shell pkg-config proj --libs)
-
-all: $(PROGRAM)
-
-$(PROGRAM): $(OBJECTS)
- $(CXX) -o $@ $< $(LDFLAGS)
-
-clean:
- $(RM) $(PROGRAM) $(OBJECTS)
-
-.PHONY: clean