From 7a9b6566ac02d8c408f4f3758bfa5fcc3e90b552 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Thu, 9 Dec 2021 00:45:03 +1300 Subject: Refactor post-install suite to test shared and static projlib (#2972) --- test/postinstall/testcpp/Makefile | 15 --------------- test/postinstall/testcpp/testcpp.cpp | 10 ---------- 2 files changed, 25 deletions(-) delete mode 100644 test/postinstall/testcpp/Makefile delete mode 100644 test/postinstall/testcpp/testcpp.cpp (limited to 'test/postinstall/testcpp') 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 diff --git a/test/postinstall/testcpp/testcpp.cpp b/test/postinstall/testcpp/testcpp.cpp deleted file mode 100644 index a03ca0ee..00000000 --- a/test/postinstall/testcpp/testcpp.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include -#include -#include -#include -#include - -int main(int /*argc */, char** /* argv */) -{ - return 0; -} -- cgit v1.2.3