mirror of
https://github.com/boostorg/regex.git
synced 2025-07-24 01:27:36 +02:00
30 lines
326 B
Makefile
30 lines
326 B
Makefile
|
|
ALL_DEP=@ac_all_dep@
|
|
|
|
base: ./build/libboost_regex.a
|
|
|
|
./build/libboost_regex.a: $(ALL_DEP)
|
|
sh dmi.sh build
|
|
|
|
|
|
jgrep : base
|
|
sh dmi.sh example/jgrep
|
|
|
|
|
|
test : base
|
|
sh dmi.sh test/regress
|
|
|
|
regress : test
|
|
|
|
timer : base
|
|
sh dmi.sh example/timer
|
|
|
|
install : base
|
|
echo no install option available
|
|
|
|
all : base jgrep test timer
|
|
|
|
|
|
|
|
|