mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
73 lines
2.5 KiB
Plaintext
73 lines
2.5 KiB
Plaintext
*** Makefile.orig Sun Jul 2 21:47:44 1995
|
|
--- Makefile Tue Jul 4 04:20:10 1995
|
|
***************
|
|
*** 32,38 ****
|
|
MAN_DIR = $(PREFIX)/man
|
|
|
|
# Where to put the compression methods description
|
|
! COMPRESSION_FILE=$(PREFIX)/lib/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
|
|
--- 32,38 ----
|
|
MAN_DIR = $(PREFIX)/man
|
|
|
|
# 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
|
|
***************
|
|
*** 53,60 ****
|
|
#
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
# commands, you can ignore these.
|
|
! INST_BIN_OPT = -c -s -m 555 -o store -g store
|
|
! INST_MAN_OPT = -c -m 444 -o store -g store
|
|
###############################################################################
|
|
#
|
|
# C compiler flags and libraries for each machine.
|
|
--- 53,62 ----
|
|
#
|
|
# If you don't wish to use the 'make install' and 'make install.man'
|
|
# commands, you can ignore these.
|
|
! #INST_BIN_OPT = -c -s -m 555 -o store -g store
|
|
! #INST_MAN_OPT = -c -m 444 -o store -g store
|
|
! 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.
|
|
***************
|
|
*** 161,169 ****
|
|
prefs.o autoinit.o ${UI}ui.o display.o empty.o color.o version.o
|
|
|
|
OBJ_SPLITMOD = split.o tools.o st_read.o dump_song.o open.o notes.o \
|
|
! display.o prefs.o autoinit.o $(UI)ui.o empty.o color.o version.o
|
|
|
|
! all: version.c config.h tracker randomize tcheck splitmod
|
|
|
|
config.h: $(CONFIG)config.h Makefile
|
|
rm -f config.h
|
|
--- 163,172 ----
|
|
prefs.o autoinit.o ${UI}ui.o display.o empty.o color.o version.o
|
|
|
|
OBJ_SPLITMOD = split.o tools.o st_read.o dump_song.o open.o notes.o \
|
|
! display.o prefs.o autoinit.o $(UI)ui.o empty.o color.o version.o \
|
|
! st_virt.o
|
|
|
|
! all: version.c config.h tracker randomize splitmod
|
|
|
|
config.h: $(CONFIG)config.h Makefile
|
|
rm -f config.h
|
|
***************
|
|
*** 175,181 ****
|
|
install:
|
|
$(INSTALL) $(INST_BIN_OPT) tracker $(BIN_DIR)
|
|
$(INSTALL) $(INST_BIN_OPT) randomize $(BIN_DIR)
|
|
- $(INSTALL) $(INST_BIN_OPT) tcheck $(BIN_DIR)
|
|
$(INSTALL) $(INST_BIN_OPT) splitmod $(BIN_DIR)
|
|
[ -f ${COMPRESSION_FILE} ] || \
|
|
$(INSTALL) $(INST_MAN_OPT) compression_methods ${COMPRESSION_FILE}
|
|
--- 178,183 ----
|