summaryrefslogtreecommitdiff
path: root/audio/tracker/files/patch-aa
blob: c0991c3e8502e3cf616466d4a7d47a4834bc12f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
*** Makefile.orig	Sun Jul  2 21:47:44 1995
--- Makefile	Sun Aug 20 02:25:56 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.
***************
*** 122,128 ****
  AUDIODIR_linux=PCux/
  CONFIG_linux = PCux/linux_
  
! CFLAGS_freebsd = -O2 -funroll-loops -finline-functions
  LIBS_freebsd = -lm
  AUDIODIR_freebsd=PCux/
  CONFIG_freebsd = PCux/freebsd_
--- 124,130 ----
  AUDIODIR_linux=PCux/
  CONFIG_linux = PCux/linux_
  
! CFLAGS_freebsd = -O2 -fno-strength-reduce -funroll-loops -finline-functions
  LIBS_freebsd = -lm
  AUDIODIR_freebsd=PCux/
  CONFIG_freebsd = PCux/freebsd_
***************
*** 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 ----