aboutsummaryrefslogtreecommitdiff
path: root/korean/nhpf/files
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-10-19 10:14:28 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-10-19 10:14:28 +0000
commit0f812b67654c738c1a8a55bc8a29b374de99c6a5 (patch)
treeb4311546de408b8b08fd8148f44b72be5259af26 /korean/nhpf/files
parent42a5e179b869f26d251b4ad2372bf4158e4ba33b (diff)
downloadports-0f812b67654c738c1a8a55bc8a29b374de99c6a5.tar.gz
ports-0f812b67654c738c1a8a55bc8a29b374de99c6a5.zip
Respect CC and CFLAGS
Notes
Notes: svn path=/head/; revision=91659
Diffstat (limited to 'korean/nhpf/files')
-rw-r--r--korean/nhpf/files/patch-Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/korean/nhpf/files/patch-Makefile b/korean/nhpf/files/patch-Makefile
new file mode 100644
index 000000000000..da4a39d8dcba
--- /dev/null
+++ b/korean/nhpf/files/patch-Makefile
@@ -0,0 +1,28 @@
+--- Makefile.orig Sun Oct 19 03:12:14 2003
++++ Makefile Sun Oct 19 03:12:40 2003
+@@ -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 @@
+ 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
+