mirror of
https://github.com/boostorg/regex.git
synced 2025-07-28 19:47:25 +02:00
29 lines
305 B
Makefile
29 lines
305 B
Makefile
![]() |
|
||
|
ALL_DEP=@ac_all_dep@
|
||
|
|
||
|
base: ./lib/libregex++.a
|
||
|
|
||
|
./lib/libregex++.a: $(ALL_DEP)
|
||
|
sh dmi.sh lib
|
||
|
|
||
|
|
||
|
jgrep : base
|
||
|
sh dmi.sh demo/jgrep
|
||
|
|
||
|
|
||
|
test : base
|
||
|
sh dmi.sh demo/regress
|
||
|
|
||
|
regress : test
|
||
|
|
||
|
timer : base
|
||
|
sh dmi.sh demo/timer
|
||
|
|
||
|
install : base
|
||
|
echo no install option available
|
||
|
|
||
|
all : base jgrep test timer
|
||
|
|
||
|
|
||
|
|