mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
e02e609ae4
PR: 13690 Reviewed by: maintainer
71 lines
1.7 KiB
Plaintext
71 lines
1.7 KiB
Plaintext
*** Makefile.org Fri Sep 17 21:54:21 1999
|
|
--- Makefile Fri Sep 17 21:56:57 1999
|
|
***************
|
|
*** 14,20 ****
|
|
#
|
|
# top_builddir = /home/john/pilot/src/pilot-link.0.9.1
|
|
#
|
|
! top_builddir = .
|
|
|
|
##########
|
|
# Pick your C compiler
|
|
--- 14,20 ----
|
|
#
|
|
# top_builddir = /home/john/pilot/src/pilot-link.0.9.1
|
|
#
|
|
! top_builddir = @@PREFIX@@
|
|
|
|
##########
|
|
# Pick your C compiler
|
|
***************
|
|
*** 26,32 ****
|
|
##########
|
|
# Where should I be installed?
|
|
#
|
|
! INSTALLTOP = /usr/local
|
|
INSTALLBIN = $(INSTALLTOP)/bin
|
|
INSTALLMAN = $(INSTALLTOP)/man
|
|
|
|
--- 26,32 ----
|
|
##########
|
|
# Where should I be installed?
|
|
#
|
|
! INSTALLTOP = @@PREFIX@@
|
|
INSTALLBIN = $(INSTALLTOP)/bin
|
|
INSTALLMAN = $(INSTALLTOP)/man
|
|
|
|
***************
|
|
*** 65,72 ****
|
|
#
|
|
# Unless you're smarter than me, which is entirely possible. [JTL]
|
|
#
|
|
! LIBDIR = -L$(top_builddir)
|
|
! INCDIR = -I$(top_builddir)
|
|
CFLAGS = -Wall $(INCDIR) $(DEFINES)
|
|
SYNCAL_OBJS = syncal.o syncal_cat.c syncal_list.o syncal_dates.o\
|
|
syncal_reconcile.o syncal_gmt.o
|
|
--- 65,72 ----
|
|
#
|
|
# Unless you're smarter than me, which is entirely possible. [JTL]
|
|
#
|
|
! LIBDIR = -L$(top_builddir)/lib
|
|
! INCDIR = -I$(top_builddir)/include
|
|
CFLAGS = -Wall $(INCDIR) $(DEFINES)
|
|
SYNCAL_OBJS = syncal.o syncal_cat.c syncal_list.o syncal_dates.o\
|
|
syncal_reconcile.o syncal_gmt.o
|
|
***************
|
|
*** 90,95 ****
|
|
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
|
|
--- 90,95 ----
|
|
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
|