blob: d346377725192751e53c631a3ffc9b6b82de2b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- Makefile.orig 1997-02-22 06:33:07 UTC
+++ Makefile
@@ -1,13 +1,13 @@
# Makefile for Netscape Hangul PS file filter
# Lee yongjae, setup@shiva.snu.ac.kr, 1997.1.22.
-CC=cc
-CFLAG=-O
+CC?=cc
+CFLAGS?=-O -pipe
ALL = nhpf wrapstr
.c.o:
- $(CC) $(CFLAG) -c $<
+ $(CC) $(CFLAGS) -c $<
all: $(ALL)
clean:
@@ -18,7 +18,7 @@ nhpf: nhpf.o ncode.o
rm -f wrapstr
wrapstr: wrapstr.c
- $(CC) $(CFLAG) -o wrapstr wrapstr.c
+ $(CC) $(CFLAGS) -o wrapstr wrapstr.c
nhpf.o: ncode.h fontdef.str n3f-5.str n3f-5b.str
|