mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-25 22:45:32 +00:00
12 lines
222 B
Makefile
12 lines
222 B
Makefile
|
|
||
|
|
||
|
all: check
|
||
|
|
||
|
check: afeval.o affunctions.o afparser.o aftypes.o afutils.o main.o
|
||
|
g++ -g -o check -lboost_regex afeval.o affunctions.o afparser.o aftypes.o afutils.o main.o
|
||
|
|
||
|
.cpp.o:
|
||
|
g++ -g -c $<
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o check
|