mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
26 lines
752 B
Plaintext
26 lines
752 B
Plaintext
--- Makefile.orig Sat Aug 12 14:37:22 1995
|
|
+++ Makefile Sun Oct 4 18:05:52 1998
|
|
@@ -1,8 +1,8 @@
|
|
LIBS = -lm -lX11 #-lefence
|
|
-LIBFLAGS = -L/usr/X11/lib
|
|
+LIBFLAGS = -L@@X11BASE@@/lib
|
|
CC = gcc
|
|
-CFLAGS = -O2 #-g
|
|
-MANDIR = /usr/local/man/
|
|
+CFLAGS = -O2 -I@@X11BASE@@/include #-g
|
|
+MANDIR = @@X11BASE@@/man/
|
|
OBJ = trippy.o frame.o kaleid.o color.o plasma.o gravity.o life.o fields.o starback.o bezier.o swarm.o rotate.o
|
|
|
|
xtacy: $(OBJ) vroot.h trippy.h
|
|
@@ -41,6 +41,7 @@
|
|
|
|
install: xtacy
|
|
strip xtacy
|
|
- cp xtacy /usr/local/bin/xtacy
|
|
- chmod a+x /usr/local/bin/xtacy
|
|
- cp Xtacy.1 $(MANDIR)/man1/
|
|
+ install -c -o bin -g bin -m 555 xtacy @@X11BASE@@/bin
|
|
+ cp Xtacy.1 xtacy.1
|
|
+ gzip -9nf xtacy.1
|
|
+ install -c -o bin -g bin -m 444 xtacy.1.gz $(MANDIR)/man1/
|