From 2b6f8123e925e3be8ce7c04eccdd49fc728314a5 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Tue, 3 Jan 2023 09:31:51 +0100 Subject: Separated out libcommon as libreichwein --- libcommon/Makefile | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 libcommon/Makefile (limited to 'libcommon/Makefile') diff --git a/libcommon/Makefile b/libcommon/Makefile deleted file mode 100644 index ddff9fc..0000000 --- a/libcommon/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# Static library to be included both in main program an in plugins (.so) - -include ../common.mk - -PROJECTNAME=libcommon - -CXXFLAGS+= -fvisibility=hidden -fPIC - -PROGSRC=\ - file.cpp \ - mime.cpp \ - stringutil.cpp \ - tempfile.cpp \ - url.cpp - -SRC=$(PROGSRC) - -all: $(PROJECTNAME).a - -$(PROJECTNAME).a: $(SRC:.cpp=.o) - ar rcs $@ $^ - -%.d: %.cpp - $(CXX) $(CXXFLAGS) -MM -MP -MF $@ -c $< - -%.o: %.cpp %.d - $(CXX) $(CXXFLAGS) -c $< -o $@ - -# dependencies - -ADD_DEP=Makefile - -# misc --------------------------------------------------- -clean: - -rm -f *.o *.a *.d - -.PHONY: clean all install - --include $(wildcard $(SRC:.cpp=.d)) -- cgit v1.2.3