mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-17 00:00:40 +00:00
70 lines
1.7 KiB
Plaintext
70 lines
1.7 KiB
Plaintext
|
*** Makefile.org Fri Apr 9 19:54:00 1999
|
||
|
--- Makefile Sat Apr 24 13:26:57 1999
|
||
|
***************
|
||
|
*** 13,19 ****
|
||
|
#
|
||
|
# top_builddir = /home/john/pilot/src/pilot-link.0.9.1
|
||
|
#
|
||
|
! top_builddir = .
|
||
|
|
||
|
##########
|
||
|
# Pick your C compiler
|
||
|
--- 13,19 ----
|
||
|
#
|
||
|
# top_builddir = /home/john/pilot/src/pilot-link.0.9.1
|
||
|
#
|
||
|
! top_builddir = @@PREFIX@@
|
||
|
|
||
|
##########
|
||
|
# Pick your C compiler
|
||
|
***************
|
||
|
*** 25,31 ****
|
||
|
##########
|
||
|
# Where should I be installed?
|
||
|
#
|
||
|
! INSTALLTOP = /usr/local
|
||
|
INSTALLBIN = $(INSTALLTOP)/bin
|
||
|
INSTALLMAN = $(INSTALLTOP)/man
|
||
|
|
||
|
--- 25,31 ----
|
||
|
##########
|
||
|
# Where should I be installed?
|
||
|
#
|
||
|
! INSTALLTOP = @@PREFIX@@
|
||
|
INSTALLBIN = $(INSTALLTOP)/bin
|
||
|
INSTALLMAN = $(INSTALLTOP)/man
|
||
|
|
||
|
***************
|
||
|
*** 58,65 ****
|
||
|
#
|
||
|
# Unless you're smarter than me, which is entirely possible. [JTL]
|
||
|
#
|
||
|
! LIBDIR = -L$(top_builddir)
|
||
|
! INCDIR = -I$(top_builddir)
|
||
|
CFLAGS = -Wall $(INCDIR)
|
||
|
SYNCAL_OBJS = syncal.o syncal_list.o syncal_dates.o syncal_reconcile.o
|
||
|
LIBTOOL = $(top_builddir)/libtool
|
||
|
--- 58,65 ----
|
||
|
#
|
||
|
# Unless you're smarter than me, which is entirely possible. [JTL]
|
||
|
#
|
||
|
! LIBDIR = -L$(top_builddir)/lib
|
||
|
! INCDIR = -I$(top_builddir)/include
|
||
|
CFLAGS = -Wall $(INCDIR)
|
||
|
SYNCAL_OBJS = syncal.o syncal_list.o syncal_dates.o syncal_reconcile.o
|
||
|
LIBTOOL = $(top_builddir)/libtool
|
||
|
***************
|
||
|
*** 81,86 ****
|
||
|
install:
|
||
|
install -d $(INSTALLBIN)
|
||
|
install -d $(INSTALLMAN)/man1
|
||
|
! install -s -g root -o root -m 755 syncal $(INSTALLBIN)
|
||
|
!
|
||
|
! install -g root -o root -m 644 syncal.1 $(INSTALLMAN)/man1
|
||
|
--- 81,85 ----
|
||
|
install:
|
||
|
install -d $(INSTALLBIN)
|
||
|
install -d $(INSTALLMAN)/man1
|
||
|
! install -c -s -g bin -o bin -m 755 syncal $(INSTALLBIN)
|
||
|
! install -c -m 644 syncal.1 $(INSTALLMAN)/man1
|