object-introspection/test/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
286 B
Makefile
Raw Normal View History

2022-12-19 14:37:51 +00:00
CXX=clang++
CXXFLAGS=-g -fdebug-types-section -I../extern/folly -O2 -pthread -no-pie
FILTER ?=
2023-01-25 18:13:28 +00:00
TARGETS=integration_mttest integration_sleepy
2022-12-19 14:37:51 +00:00
all: $(TARGETS)
clean:
rm -f $(TARGETS)
test-integration: integration_mttest integration_sleepy
sudo python3 integration.py -k '$(FILTER)'