makefile adjustments

[SVN r9396]
This commit is contained in:
John Maddock
2001-03-03 11:37:50 +00:00
parent db6b4db44d
commit 831160baa2
6 changed files with 132 additions and 76 deletions

View File

@ -1,20 +0,0 @@
# Makefile for timer application
#
# for SUN workshop 5.0 C++ compiler
#
CXX=CC
CPP_FLAGS = -O -I../../../../ -I./
%.o : %.cpp
$(CXX) -c -o $@ $(CPP_FLAGS) $<
jgrep : jgrep.o main.o
$(CXX) -o $@ $(CPP_FLAGS) jgrep.o main.o -L../../lib -lregex++
clean:
rm -rf SunWS_cache
rm -f jgrep.o jgrep main.o