File: Imakefile

package info (click to toggle)
xconq 7.2.2-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 8,296 kB
  • ctags: 9,199
  • sloc: ansic: 107,849; sh: 2,108; perl: 2,057; makefile: 1,177; sed: 161; csh: 50; awk: 49; lisp: 39
file content (70 lines) | stat: -rw-r--r-- 1,032 bytes parent folder | download | duplicates (2)
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
/* Imakefile for Xconq kernel. */

/* Prevent unix.o -> 1.o mapping by cpp. */

#ifdef unix
#undef unix
#endif

#include "../Local.config"

DEFINES = -DUNIX -DXCONQDATA=\"$(DATADIR)\"

INCLUDES = -I. -I../kernel

CONQLOW_LIBRARIES = ../kernel/libconqlow.a

CONQ_LIBRARIES = ../kernel/libconq.a $(CONQLOW_LIBRARIES)

OBJS = \
	init.o \
	cmdline.o \
	ai.o \
	mplayer.o \
	actions.o \
	move.o \
	combat.o \
	run.o \
	run2.o \
	score.o \
	world.o \
	history.o \
	module.o \
	write.o \
	read.o \
	mkterr.o \
	mkunits.o \
	mkrivers.o \
	mkroads.o \
	mknames.o \
	side.o \
	unit.o \
	plan.o \
	task.o \
	nlang.o \
	ui.o \
	ps.o \
	tp.o \
	obstack.o \
	help.o \
	copying.o

LOBJS = \
	imf.o \
	lisp.o \
	util.o \
	unix.o

GOBJS =	generic.o \
	types.o \
	tables.o

CONQOBJS = $(OBJS) $(GOBJS)

NormalLibraryTarget(conq,$(CONQOBJS))

NormalLibraryTarget(conqlow,$(LOBJS))

NormalProgramTarget(skelconq, skelconq.o, $(CONQ_LIBRARIES), $(CONQ_LIBRARIES), )

NormalProgramTarget(imf2imf, imf2imf.o, $(CONQLOW_LIBRARIES), $(CONQLOW_LIBRARIES), )