blob: 380bb36c95f390c841eb4b06f7ec64cf7b9a1696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- Makefile.old Mon Sep 23 16:45:44 2002
+++ Makefile Mon Sep 23 16:45:51 2002
@@ -1,10 +1,10 @@
-CPPFLAGS=-W -Wall -O2
+CPPFLAGS=-W -Wall -O2 -I/usr/local/include -L/usr/local/lib -lpng
DEBUG=-g
all: png2ico
png2ico: png2ico.cpp
- g++ $(CPPFLAGS) $(DEBUG) -o $@ $< -lpng
+ g++ $(CPPFLAGS) $(DEBUG) -o $@ $<
doc/png2ico.txt: doc/png2ico.1
man $< |sed -e $$'s/.\b\\(.\\)/\\1/g' -e 's/\(.*\)/\1'$$'\r/' >$@
|