mirror of
https://github.com/boostorg/regex.git
synced 2025-07-15 05:16:37 +02:00
31 lines
310 B
Makefile
31 lines
310 B
Makefile
|
|
# very basic makefile for jgrep
|
|
#
|
|
# GNU compiler g++
|
|
#
|
|
CXX= -O2 -I../../../../ -I./
|
|
|
|
jgrep : jgrep.cpp main.cpp
|
|
g++ -ojgrep $(CXX) jgrep.cpp main.cpp -L../../lib/gcc -lregex++
|
|
|
|
debug : jgrep.cpp main.cpp
|
|
g++ -ojgrep -I../../../../ -I./ -g jgrep.cpp main.cpp -L../../lib/gcc -lregex++debug
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|