mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
5d9b41e9cf
Add -lmytinfo to LIBS
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
*** Makefile.in.orig Sat May 17 03:05:18 1997
|
|
--- Makefile.in Mon May 19 15:41:18 1997
|
|
***************
|
|
*** 34,40 ****
|
|
XCPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@
|
|
CFLAGS=@CFLAGS@ -DSHAREDIR=\"$(sharedir)\" $(XCPPFLAGS)
|
|
LDFLAGS=@LDFLAGS@
|
|
! LIBS=@LIBS@
|
|
REGEX=@REGEX@
|
|
OBJS= addrbook.o alias.o attach.o bind.o browser.o buffy.o color.o \
|
|
commands.o \
|
|
--- 34,40 ----
|
|
XCPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@
|
|
CFLAGS=@CFLAGS@ -DSHAREDIR=\"$(sharedir)\" $(XCPPFLAGS)
|
|
LDFLAGS=@LDFLAGS@
|
|
! LIBS=@LIBS@ -lmytinfo
|
|
REGEX=@REGEX@
|
|
OBJS= addrbook.o alias.o attach.o bind.o browser.o buffy.o color.o \
|
|
commands.o \
|
|
***************
|
|
*** 52,61 ****
|
|
EXCLUDE=config.h config.cache config.log config.status tags Makefile \
|
|
rx/Makefile
|
|
|
|
! all: mutt
|
|
|
|
mutt: $(OBJS) $(REGEX)
|
|
$(CC) -o mutt $(OBJS) $(REGEX) $(LDFLAGS) $(LIBS)
|
|
|
|
install: mutt
|
|
$(srcdir)/mkinstalldirs $(bindir)
|
|
--- 52,64 ----
|
|
EXCLUDE=config.h config.cache config.log config.status tags Makefile \
|
|
rx/Makefile
|
|
|
|
! all: mutt docs
|
|
|
|
mutt: $(OBJS) $(REGEX)
|
|
$(CC) -o mutt $(OBJS) $(REGEX) $(LDFLAGS) $(LIBS)
|
|
+
|
|
+ docs:
|
|
+ cd doc && make fbsd
|
|
|
|
install: mutt
|
|
$(srcdir)/mkinstalldirs $(bindir)
|