diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-02-20 21:20:07 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-02-20 21:20:07 +0000 |
commit | 34bb5fd295f9f48f0c01dbf4cde07a98d3048c8e (patch) | |
tree | 5de377155a62bebf5ceafef54a92f1a7818ab591 /editors/qemacs/files/patch-Makefile | |
parent | * Re-add libgnomeprintui-2.0 support (diff) |
Add qemacs, Quick Emacs, a very small but powerful editor
Submitted by: Brad Davis <so14k@so14k.com>
Diffstat (limited to 'editors/qemacs/files/patch-Makefile')
-rw-r--r-- | editors/qemacs/files/patch-Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/editors/qemacs/files/patch-Makefile b/editors/qemacs/files/patch-Makefile new file mode 100644 index 000000000000..21fcb9707c3d --- /dev/null +++ b/editors/qemacs/files/patch-Makefile @@ -0,0 +1,26 @@ +--- Makefile.orig Thu May 2 02:27:40 2002 ++++ Makefile Thu Feb 20 21:46:55 2003 +@@ -42,17 +42,17 @@ + # + CONFIG_PNG_OUTPUT=y + +-HOST_CC=gcc +-CC=$(HOST_CC) ++HOST_CC?=gcc ++CC?=$(HOST_CC) + PROFILE= +-CFLAGS=-Wall -O2 -g $(PROFILE) ++CFLAGS?=-Wall -O2 -g $(PROFILE) + #CFLAGS+=-fomit-frame-pointer + #CPU dependent flags +-CFLAGS+=-m386 -malign-functions=0 +-LDFLAGS= $(PROFILE) ++#CFLAGS+=-m386 -malign-functions=0 ++LDFLAGS?= $(PROFILE) + STRIP=strip -s -R .comment -R .note + DEFINES= +-prefix=/usr/local ++prefix?=/usr/local + + ######################################################## + # do not modify after this |