]> git.pld-linux.org Git - packages/squidview.git/blame - squidview-makefile.patch
- delete outdated patch
[packages/squidview.git] / squidview-makefile.patch
CommitLineData
6e7af531
PG
1--- ./Makefile.org Thu Jul 11 05:52:48 2002
2+++ ./Makefile Wed Jul 31 17:39:29 2002
3@@ -1,8 +1,20 @@
4+CXXFLAGS =
5+
6+CXX = c++
7+PREFIX = /usr/local
8+BINDIR = $(PREFIX)/bin
9+DATADIR = $(PREFIX)/share
10+DOCDIR = $(DATADIR)/doc
11+
12 squidview: squidview.cpp squidview.h
13- c++ squidview.cpp -Wall -lncurses -o squidview
14+ $(CXX) squidview.cpp $(CXXFLAGS) -Wall -lncurses -o squidview
15
16 oldgcc: squidview.cpp squidview.h
17- c++ squidview.cpp -Wall -fhandle-exceptions -lncurses -o squidview
18+ $(CXX) squidview.cpp $(CXXFLAGS) -Wall -fhandle-exceptions -lncurses -o squidview
19
20-install: squidview
21+install-all: squidview
22 ./install-sv
23+
24+install:
25+ install -d $(DESTDIR)$(BINDIR)
26+ install squidview $(DESTDIR)$(BINDIR)
This page took 0.060175 seconds and 4 git commands to generate.