mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
da58517f0a
PR: 12214 Submitted by: n_hibma
25 lines
635 B
Plaintext
25 lines
635 B
Plaintext
--- Makefile.orig Tue Jan 21 07:53:05 1997
|
|
+++ Makefile Fri Jun 25 12:17:39 1999
|
|
@@ -1,6 +1,6 @@
|
|
-CFLAGS = -O
|
|
+DEST = ${PREFIX}/share/babel
|
|
|
|
-LIBFLAGS = -O -DLIBRARY
|
|
+LIBFLAGS = -DLIBRARY
|
|
|
|
CC = cc
|
|
|
|
@@ -334,7 +334,11 @@
|
|
index:; ctags -wx $(HDRS) $(SRCS)
|
|
|
|
install: $(PROGRAM)
|
|
- install -s $(PROGRAM) $(DEST)
|
|
+ install -s $(PROGRAM) ${PREFIX}/bin/$(PROGRAM)
|
|
+ install -d -o bin -g bin $(DEST)
|
|
+ install -c -o bin -g bin README.1ST $(DEST)
|
|
+ install -c -o bin -g bin element.lis new.lis $(DEST)
|
|
+ install -c -o bin -g bin quanta.lis types.lis $(DEST)
|
|
|
|
print:; $(PRINT) $(HDRS) $(SRCS)
|
|
|