mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
9ca6cd3927
those submitted. PR: 10699 Submitted by: Jose Marques <jose@nobody.org>
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
*** makefile.in.orig Tue Jan 6 20:35:51 1998
|
|
--- makefile.in Mon Jun 21 15:43:33 1999
|
|
***************
|
|
*** 2,10 ****
|
|
CFLAGS = @CFLAGS@ @CPPFLAGS@ @X_CFLAGS@ -O0
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @X_PRE_LIBS@ @X_LIBS@ @LIBS@ @X_EXTRA_LIBS@
|
|
! prefix = @prefix@
|
|
! BINDIR = $(prefix)/bin
|
|
! LIBLOC = $(prefix)/lib/logo
|
|
|
|
# LIBLOC = `pwd`
|
|
|
|
--- 2,14 ----
|
|
CFLAGS = @CFLAGS@ @CPPFLAGS@ @X_CFLAGS@ -O0
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @X_PRE_LIBS@ @X_LIBS@ @LIBS@ @X_EXTRA_LIBS@
|
|
!
|
|
! BINDIR = $(PREFIX)/bin
|
|
! LIBLOC = $(PREFIX)/lib/logo
|
|
! XMPDIR = $(PREFIX)/share/examples/logo
|
|
! .ifndef NOPORTDOCS
|
|
! DOCDIR = $(PREFIX)/share/doc/logo
|
|
! .endif
|
|
|
|
# LIBLOC = `pwd`
|
|
|
|
***************
|
|
*** 56,62 ****
|
|
rm makefile makehelp logo *.o libloc.c
|
|
|
|
install: all
|
|
! for d in $(BINDIR) $(LIBLOC) $(LIBLOC)/logolib $(LIBLOC)/helpfiles; do [ -d $$d ] || mkdir -p $$d || exit 1; done
|
|
! cp logo $(BINDIR)/.
|
|
! cp logolib/* $(LIBLOC)/logolib/.
|
|
! cp helpfiles/* $(LIBLOC)/helpfiles/.
|
|
--- 60,70 ----
|
|
rm makefile makehelp logo *.o libloc.c
|
|
|
|
install: all
|
|
! for d in $(BINDIR) $(LIBLOC) $(LIBLOC)/logolib $(LIBLOC)/helpfiles $(XMPDIR)/csls $(DOCDIR); do [ -d $$d ] || mkdir -p $$d || exit 1; done
|
|
! install -c -s -o bin -g bin -m 555 logo $(BINDIR)/
|
|
! install -c -o bin -g bin -m 444 logolib/* $(LIBLOC)/logolib/
|
|
! install -c -o bin -g bin -m 444 helpfiles/* $(LIBLOC)/helpfiles/
|
|
! install -c -o bin -g bin -m 444 csls/* $(XMPDIR)/csls/
|
|
! .ifndef NOPORTDOCS
|
|
! install -c -o bin -g bin -m 444 usermanual $(DOCDIR)/
|
|
! .endif
|