mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b85e95f56a
This one requires X11.
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
--- Makefile.orig Sat Jan 3 13:42:44 1998
|
|
+++ Makefile Sat Jun 27 23:59:49 1998
|
|
@@ -62,19 +62,21 @@
|
|
# definitions for some arbitrary little-endian system
|
|
#SYSTEMFLAGS = -DLITTLE_END_MODE
|
|
|
|
+SYSTEMFLAGS = -DAUTO_END_MODE
|
|
+
|
|
# --------------------
|
|
|
|
# definitions for where the X lib and include directories are
|
|
-XDIR = /usr
|
|
-XINCLUDE = $(XDIR)/include/X11
|
|
-XLIB = $(XDIR)/lib/X11
|
|
+XDIR = ${X11BASE}
|
|
+XINCLUDE = $(XDIR)/include
|
|
+XLIB = $(XDIR)/lib
|
|
|
|
# definition for where to install xzip executable and man page
|
|
-DESTDIR = /usr/local
|
|
+DESTDIR = ${PREFIX}
|
|
|
|
# --------------------
|
|
|
|
-CFLAGS = -O $(SYSTEMFLAGS) -I$(XINCLUDE)
|
|
+CFLAGS += $(SYSTEMFLAGS) -I$(XINCLUDE)
|
|
LDFLAGS =
|
|
LIBS = -L$(XLIB) -lX11 $(SYSTEMLIBS)
|
|
|
|
@@ -132,8 +134,8 @@
|
|
$(CC) $(CFLAGS) $(FONTDEFAULTLIST) -c xinit.c
|
|
|
|
install: $(PROGRAM)
|
|
- install -s $(PROGRAM) $(DESTDIR)/bin
|
|
- install $(PROGRAM).1 $(DESTDIR)/man/man1
|
|
+ ${BSD_INSTALL_PROGRAM} $(PROGRAM) $(DESTDIR)/bin
|
|
+ ${BSD_INSTALL_DATA} $(PROGRAM).1 $(DESTDIR)/man/man1
|
|
|
|
clean :
|
|
-rm -f *~ *.o $(PROGRAM) test
|