blob: 80448677d733b50c49f30d0f6573e6bff15a9913 (
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
|
*** ../empire-1.1.orig/Makefile Fri Jun 28 06:27:39 1996
--- Makefile Fri Jun 27 02:31:13 1997
***************
*** 14,25 ****
# Change the line below for your system. If you are on a Sun or Vax,
# you may want BSD.
! #SYS = BSD
! SYS = SYSV
# Use -g to compile the program for debugging.
! DEBUG = -g -DDEBUG
#DEBUG = -O
# Use -p to profile the program.
--- 14,25 ----
# Change the line below for your system. If you are on a Sun or Vax,
# you may want BSD.
! SYS = BSD
! #SYS = SYSV
# Use -g to compile the program for debugging.
! #DEBUG = -g -DDEBUG
#DEBUG = -O
# Use -p to profile the program.
***************
*** 28,39 ****
# Define all necessary libraries. 'curses' is necessary. 'termcap'
# is needed on BSD systems.
! LIBS = -lncurses
! #LIBS = -lcurses -ltermcap
# You shouldn't have to modify anything below this line.
! CFLAGS = $(DEBUG) $(PROFILE) -D$(SYS)
FILES = \
attack.c \
--- 28,39 ----
# Define all necessary libraries. 'curses' is necessary. 'termcap'
# is needed on BSD systems.
! #LIBS = -lncurses
! LIBS = -lcurses
# You shouldn't have to modify anything below this line.
! CFLAGS+= $(DEBUG) $(PROFILE) -D$(SYS)
FILES = \
attack.c \
|