mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-12 21:56:54 +00:00
15 lines
467 B
Makefile
15 lines
467 B
Makefile
CXX=clang++
|
|
CXXFLAGS=-g -fdebug-types-section -I../extern/folly -O2 -pthread -no-pie
|
|
FILTER ?=
|
|
|
|
TARGETS=integration_mttest integration_sleepy integration_packed integration_cycles mapiter mttest1 mttest2 mttest2_inline mttest3 mttest4 tester userDef1 vector inlined_test
|
|
|
|
mttest2_inline: CXXFLAGS+=-DMTTEST2_INLINE_DO_STUFF
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm -f $(TARGETS)
|
|
|
|
test-integration: integration_mttest integration_sleepy
|
|
sudo python3 integration.py -k '$(FILTER)'
|