start working on an allplacefinder library

in 'lib' directory there'll be the library
in 'placefinder' directory there'll be a cmd tool (placefinder)
This commit is contained in:
Tomasz Sowa
2021-11-26 21:56:07 +01:00
commit 7a4f2de284
10 changed files with 403 additions and 0 deletions

45
placefinder/Makefile Normal file
View File

@@ -0,0 +1,45 @@
sourcefiles:=$(shell find . -name "*.cpp")
objfiles:=$(patsubst %.cpp,%.o,$(sourcefiles))
ifndef CXX
CXX = g++
endif
ifndef CXXFLAGS
CXXFLAGS = -Wall -pedantic -O2 -std=c++20 -I../lib
endif
ifndef AR
AR = ar
endif
progname = placefinder
all: $(progname)
$(progname): $(objfiles)
$(CXX) -o $(progname) $(CXXFLAGS) $(LDFLAGS) $(objfiles) ../lib/allplacefinder.a ../../pikotools/src/pikotools.a
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) -o $@ $<
clean:
rm -f $(objfiles)
rm -f $(progname)
depend:
makedepend -Y. -I../lib -f- $(sourcefiles) > Makefile.dep
-include Makefile.dep