From c6dbf0450566c40efc4a26f4f0717452b6ef95cd Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 10 Aug 2022 10:38:44 +0200 Subject: Initial commit --- node_modules/ua-parser/cpp/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 node_modules/ua-parser/cpp/Makefile (limited to 'node_modules/ua-parser/cpp/Makefile') diff --git a/node_modules/ua-parser/cpp/Makefile b/node_modules/ua-parser/cpp/Makefile new file mode 100644 index 0000000..99a51db --- /dev/null +++ b/node_modules/ua-parser/cpp/Makefile @@ -0,0 +1,29 @@ +CC=g++ +LDFLAGS=-lboost_regex -lboost_system -lyaml-cpp -lglog +CFLAGS=-std=c++0x -Wall -Werror -g -O3 + +# wildcard object build target +%.o: %.cpp + $(CC) -c $(CFLAGS) $*.cpp -o $*.o $(LDFLAGS) + @$(CC) -MM $(CFLAGS) $*.cpp $(LDFLAGS) > $*.d + +uaparser_cpp: libuaparser_cpp.a + +libuaparser_cpp.a: UaParser.o + ar rcs $@ $^ + +UaParserTest: libuaparser_cpp.a UaParserTest.o + $(CC) $(CFLAGS) $^ -o $@ libuaparser_cpp.a $(LDFLAGS) -lgtest -lpthread + +test: UaParserTest + ./UaParserTest + +# clean everything generated +clean: + find . -name "*.o" -exec rm -rf {} \; # clean up object files + find . -name "*.d" -exec rm -rf {} \; # clean up dependencies + rm -f UaParserTest *.a + +# automatically include the generated *.d dependency make targets +# that are created from the wildcard %.o build target above +-include $(OBJS:.o=.d) -- cgit