1995-08-30 16:05:36 +00:00
|
|
|
*** Makefile.orig Sun Aug 27 22:48:39 1995
|
|
|
|
--- Makefile Wed Aug 30 19:36:13 1995
|
1994-11-27 14:49:59 +00:00
|
|
|
***************
|
1995-08-30 16:05:36 +00:00
|
|
|
*** 29,35 ****
|
1995-02-09 21:04:57 +00:00
|
|
|
MAN_DIR = $(PREFIX)/man
|
1995-01-28 12:02:08 +00:00
|
|
|
|
|
|
|
# Where to put the compression methods description
|
1995-02-09 21:04:57 +00:00
|
|
|
! COMPRESSION_FILE=$(PREFIX)/lib/compression_methods
|
1995-01-28 12:02:08 +00:00
|
|
|
|
|
|
|
# How to install the binaries and manpage. If you have a unix system,
|
|
|
|
# use the GNU install program if you have it, otherwise try 'cp'. For
|
1995-08-30 16:05:36 +00:00
|
|
|
--- 29,35 ----
|
1995-02-09 21:04:57 +00:00
|
|
|
MAN_DIR = $(PREFIX)/man
|
1995-01-28 12:02:08 +00:00
|
|
|
|
|
|
|
# Where to put the compression methods description
|
|
|
|
! COMPRESSION_FILE=$(PREFIX)/etc/compression_methods
|
|
|
|
|
|
|
|
# How to install the binaries and manpage. If you have a unix system,
|
|
|
|
# use the GNU install program if you have it, otherwise try 'cp'. For
|
1994-10-02 23:15:02 +00:00
|
|
|
***************
|
1995-08-30 16:05:36 +00:00
|
|
|
*** 50,57 ****
|
1995-01-28 12:02:08 +00:00
|
|
|
#
|
|
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
|
|
# commands, you can ignore these.
|
1995-06-22 00:51:25 +00:00
|
|
|
! INST_BIN_OPT = -c -s -m 555 -o store -g store
|
|
|
|
! INST_MAN_OPT = -c -m 444 -o store -g store
|
1995-01-28 12:02:08 +00:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# C compiler flags and libraries for each machine.
|
1995-08-30 16:05:36 +00:00
|
|
|
--- 50,59 ----
|
1995-01-28 12:02:08 +00:00
|
|
|
#
|
|
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
|
|
# commands, you can ignore these.
|
1995-06-22 00:51:25 +00:00
|
|
|
! #INST_BIN_OPT = -c -s -m 555 -o store -g store
|
|
|
|
! #INST_MAN_OPT = -c -m 444 -o store -g store
|
1995-01-28 12:02:08 +00:00
|
|
|
! INST_BIN_OPT = -c -s -m 555 -o bin -g bin
|
|
|
|
! INST_MAN_OPT = -c -m 644 -o bin -g bin
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# C compiler flags and libraries for each machine.
|
1995-07-04 00:37:05 +00:00
|
|
|
***************
|
1995-08-30 16:05:36 +00:00
|
|
|
*** 236,242 ****
|
|
|
|
display$O prefs$O autoinit$O $(UI)ui$O empty$O color$O version$O \
|
|
|
|
st_virt$O
|
1995-08-19 22:28:45 +00:00
|
|
|
|
1995-08-30 16:05:36 +00:00
|
|
|
! all: version.c config.h tracker${EXE} randomize${EXE} splitmod${EXE}
|
1995-07-04 00:37:05 +00:00
|
|
|
|
|
|
|
config.h: $(CONFIG)config.h Makefile
|
|
|
|
rm -f config.h
|
1995-08-30 16:05:36 +00:00
|
|
|
--- 238,244 ----
|
|
|
|
display$O prefs$O autoinit$O $(UI)ui$O empty$O color$O version$O \
|
|
|
|
st_virt$O
|
1995-07-04 00:37:05 +00:00
|
|
|
|
1995-08-30 16:05:36 +00:00
|
|
|
! all: version.c config.h tracker${EXE} randomize${EXE}
|
1995-07-04 00:37:05 +00:00
|
|
|
|
|
|
|
config.h: $(CONFIG)config.h Makefile
|
|
|
|
rm -f config.h
|
|
|
|
***************
|
1995-08-30 16:05:36 +00:00
|
|
|
*** 248,261 ****
|
|
|
|
install:
|
|
|
|
$(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
|
|
|
|
$(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
|
|
|
|
- $(INSTALL) $(INST_BIN_OPT) splitmod $(BIN_DIR)
|
|
|
|
[ -f ${COMPRESSION_FILE} ] || \
|
|
|
|
$(INSTALL) $(INST_MAN_OPT) compression_methods ${COMPRESSION_FILE}
|
|
|
|
|
|
|
|
install.man:
|
|
|
|
$(INSTALL) $(INST_MAN_OPT) man/tracker.1 $(MAN_DIR)/man1/tracker.1
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
devel:
|
|
|
|
-rm -f $(BIN_DIR)/dtracker #$(BIN_DIR)/splitmod
|
|
|
|
--- 250,263 ----
|
1995-07-04 00:37:05 +00:00
|
|
|
install:
|
|
|
|
$(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
|
|
|
|
$(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
|
|
|
|
[ -f ${COMPRESSION_FILE} ] || \
|
|
|
|
$(INSTALL) $(INST_MAN_OPT) compression_methods ${COMPRESSION_FILE}
|
1995-08-30 16:05:36 +00:00
|
|
|
|
|
|
|
install.man:
|
|
|
|
$(INSTALL) $(INST_MAN_OPT) man/tracker.1 $(MAN_DIR)/man1/tracker.1
|
|
|
|
|
|
|
|
! install.info:
|
|
|
|
! gzip < Docs/tracker.guide > $(PREFIX)/info/tracker.info.gz
|
|
|
|
|
|
|
|
devel:
|
|
|
|
-rm -f $(BIN_DIR)/dtracker #$(BIN_DIR)/splitmod
|