mirror of
https://github.com/boostorg/regex.git
synced 2025-07-14 12:56:36 +02:00
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++
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|