mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
4a8991c988
PR: 13601 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
86 lines
3.4 KiB
Plaintext
86 lines
3.4 KiB
Plaintext
*** Makefile.in.orig Mon Aug 2 18:24:26 1999
|
|
--- Makefile.in Mon Sep 6 21:22:42 1999
|
|
***************
|
|
*** 16,22 ****
|
|
srcdir = @srcdir@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
! libdir = $(exec_prefix)/lib
|
|
includedir = $(exec_prefix)/include
|
|
docdir = $(srcdir)/doc
|
|
thisdir =@thisdir@
|
|
--- 16,22 ----
|
|
srcdir = @srcdir@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
! datadir = $(exec_prefix)/share
|
|
includedir = $(exec_prefix)/include
|
|
docdir = $(srcdir)/doc
|
|
thisdir =@thisdir@
|
|
***************
|
|
*** 30,36 ****
|
|
CFLAGS = @CFLAGS@
|
|
|
|
INCDIR = $(srcdir)
|
|
! CPPFLAGS = -I. -I$(INCDIR) @DEFS@ @SYS_DEFS@ -DTHE_HOME_DIRECTORY=\"$(prefix)/THE/\"
|
|
|
|
CCFLAGS = -c $(CFLAGS) $(CPPFLAGS) @MH_CURSES_INC@ @MH_REXX_INC@
|
|
|
|
--- 30,36 ----
|
|
CFLAGS = @CFLAGS@
|
|
|
|
INCDIR = $(srcdir)
|
|
! CPPFLAGS = -I. -I$(INCDIR) @DEFS@ @SYS_DEFS@ -DTHE_HOME_DIRECTORY=\"$(datadir)/THE/\"
|
|
|
|
CCFLAGS = -c $(CFLAGS) $(CPPFLAGS) @MH_CURSES_INC@ @MH_REXX_INC@
|
|
|
|
***************
|
|
*** 163,185 ****
|
|
|
|
install: the the.man THE_Help.txt
|
|
$(INSTALL_DATA) -m 755 -d $(exec_prefix)/bin
|
|
! $(INSTALL_DATA) -m 755 -d $(prefix)/THE
|
|
! $(INSTALL) -m 755 ./the $(exec_prefix)/bin/the
|
|
! $(INSTALL_DATA) ./the.man $(prefix)/THE/the.man
|
|
! $(INSTALL_DATA) $(srcdir)/append.the $(prefix)/THE/append.the
|
|
! $(INSTALL_DATA) $(srcdir)/comm.the $(prefix)/THE/comm.the
|
|
! $(INSTALL_DATA) $(srcdir)/build.the $(prefix)/THE/build.the
|
|
! $(INSTALL_DATA) $(srcdir)/setbuild.the $(prefix)/THE/setbuild.the
|
|
! $(INSTALL_DATA) $(srcdir)/uncomm.the $(prefix)/THE/uncomm.the
|
|
! $(INSTALL_DATA) $(srcdir)/total.the $(prefix)/THE/total.the
|
|
! $(INSTALL_DATA) $(srcdir)/match.the $(prefix)/THE/match.the
|
|
! $(INSTALL_DATA) $(srcdir)/rm.the $(prefix)/THE/rm.the
|
|
! $(INSTALL_DATA) $(srcdir)/words.the $(prefix)/THE/words.the
|
|
! $(INSTALL_DATA) $(srcdir)/l.the $(prefix)/THE/l.the
|
|
! $(INSTALL_DATA) $(srcdir)/compile.the $(prefix)/THE/compile.the
|
|
! $(INSTALL_DATA) $(srcdir)/spell.the $(prefix)/THE/spell.the
|
|
! $(INSTALL_DATA) $(srcdir)/demo.the $(prefix)/THE/demo.the
|
|
! $(INSTALL_DATA) $(srcdir)/THE_Help.txt $(prefix)/THE/THE_Help.txt
|
|
|
|
clean:
|
|
-rm -f *.o trace the manext *.man *$(HTML_EXT) *.new
|
|
--- 163,185 ----
|
|
|
|
install: the the.man THE_Help.txt
|
|
$(INSTALL_DATA) -m 755 -d $(exec_prefix)/bin
|
|
! $(INSTALL_DATA) -m 755 -d $(datadir)/THE
|
|
! $(INSTALL) -m 755 $(srcdir)/the $(exec_prefix)/bin/the
|
|
! $(INSTALL_DATA) $(srcdir)/the.man $(datadir)/THE/the.man
|
|
! $(INSTALL_DATA) $(srcdir)/append.the $(datadir)/THE/append.the
|
|
! $(INSTALL_DATA) $(srcdir)/comm.the $(datadir)/THE/comm.the
|
|
! $(INSTALL_DATA) $(srcdir)/build.the $(datadir)/THE/build.the
|
|
! $(INSTALL_DATA) $(srcdir)/setbuild.the $(datadir)/THE/setbuild.the
|
|
! $(INSTALL_DATA) $(srcdir)/uncomm.the $(datadir)/THE/uncomm.the
|
|
! $(INSTALL_DATA) $(srcdir)/total.the $(datadir)/THE/total.the
|
|
! $(INSTALL_DATA) $(srcdir)/match.the $(datadir)/THE/match.the
|
|
! $(INSTALL_DATA) $(srcdir)/rm.the $(datadir)/THE/rm.the
|
|
! $(INSTALL_DATA) $(srcdir)/words.the $(datadir)/THE/words.the
|
|
! $(INSTALL_DATA) $(srcdir)/l.the $(datadir)/THE/l.the
|
|
! $(INSTALL_DATA) $(srcdir)/compile.the $(datadir)/THE/compile.the
|
|
! $(INSTALL_DATA) $(srcdir)/spell.the $(datadir)/THE/spell.the
|
|
! $(INSTALL_DATA) $(srcdir)/demo.the $(datadir)/THE/demo.the
|
|
! $(INSTALL_DATA) $(srcdir)/THE_Help.txt $(datadir)/THE/THE_Help.txt
|
|
|
|
clean:
|
|
-rm -f *.o trace the manext *.man *$(HTML_EXT) *.new
|