forked from boostorg/regex
28 lines
196 B
Makefile
28 lines
196 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++
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|