mirror of
https://github.com/boostorg/regex.git
synced 2026-01-29 17:53:03 +01: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
|
|
|
|
|
|
|