mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
28c30ae35d
while I'm here.
44 lines
820 B
Plaintext
44 lines
820 B
Plaintext
--- Makefile.orig Wed Oct 28 08:45:58 1998
|
|
+++ Makefile Tue Feb 1 23:21:29 2000
|
|
@@ -8,7 +8,8 @@
|
|
# commenting out the includes of ptotdll.h in ptotdll.c and main.c.
|
|
# PMcJ 6 Sep 96
|
|
|
|
-CC=gcc
|
|
+CC?=gcc
|
|
+CFLAGS?=-O2
|
|
#CC=cc -std
|
|
|
|
BUNDLE = ocr.h rot270.h rot90.h
|
|
@@ -16,10 +17,10 @@
|
|
all: pstotext
|
|
|
|
main.o: ptotdll.h bundle.h ocr.h rot270.h rot90.h
|
|
- $(CC) -c $*.c
|
|
+ $(CC) ${CFLAGS} -c $*.c
|
|
|
|
ptotdll.o: ptotdll.h
|
|
- $(CC) -c $*.c
|
|
+ $(CC) ${CFLAGS} -c $*.c
|
|
|
|
pstotext: bundle.o main.o ptotdll.o
|
|
$(CC) -o pstotext main.o bundle.o ptotdll.o -lm
|
|
@@ -27,7 +28,7 @@
|
|
.SUFFIXES: .ps
|
|
|
|
.c.o:
|
|
- $(CC) -c $*.c
|
|
+ $(CC) ${CFLAGS} -c $*.c
|
|
|
|
# "Bundle" an Ascii file.
|
|
.ps.h:
|
|
@@ -42,3 +43,8 @@
|
|
|
|
clean:
|
|
rm -f pstotext *.o core $(BUNDLE)
|
|
+
|
|
+install:
|
|
+ cp -p pstotext /usr/local/bin
|
|
+ cp -p pstotext.1 /usr/local/man/man1
|
|
+
|