annotate Makefile.gen @ 606:a0082ce261c8

Add setup menu bar image conversion to build process, move some things around.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 12 Apr 2013 11:18:45 +0300
parents 6699a8b25535
children 360b1ad83ed9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 ### Get settings from config.mak
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 include config.mak
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
587
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
6 BINPATH ?= ./
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
7 DMLIB ?= ./
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
8 DM_CFLAGS += -I$(DMLIB)
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
9
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 ifeq ($(EXTRA_CFLAGS),)
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
11 #EXTRA_CFLAGS=-O3 -march=core2 -DDM_DEVEL
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
12 EXTRA_CFLAGS= -march=core2 -DDM_DEVEL
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
15
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
16 ###
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
17 ### Editor
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
18 ###
573
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
19 ifeq ($(DM_USE_TIMELINE),yes)
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
20 DM_CFLAGS+=-DDM_USE_TIMELINE
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
21 DMLIB_OBJS += dmtimeline.o dmtimelinew.o
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
22
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
23 ifeq ($(DM_BUILD_EDITOR),yes)
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
24 ifneq ($(DEMO_BIN),)
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
25 BINARIES += ed_$(DEMO_BIN)
563
1483cd1cf0e6 Fix build by moving moc_* from TARGETS to TMPFILES.
Matti Hamalainen <ccr@tnsp.org>
parents: 562
diff changeset
26 TARGETS += $(EDITOR_MAKEFILE) $(EDITOR_PRO)
1483cd1cf0e6 Fix build by moving moc_* from TARGETS to TMPFILES.
Matti Hamalainen <ccr@tnsp.org>
parents: 562
diff changeset
27 TMPFILES += $(OBJPATH)moc_*
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
28 endif
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
29 endif
573
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
30 endif
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
31
370
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
32 EDITOR_PRO = editor.pro
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
33 EDITOR_MAKEFILE = Makefile.editor
403
d34922e6a244 Even more work towards the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
34 EDITOR_SOURCES = edmain.cpp edgui.cpp edview.cpp edtlobj.cpp edtimeline.cpp edwaveform.cpp edres.cpp
d34922e6a244 Even more work towards the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 392
diff changeset
35 EDITOR_HEADERS = edmain.h edtlobj.h edview.h edtimeline.h edwaveform.h edres.h
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
36
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
37
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 ### Form additional compilation defines based on settings
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42 # If C routines are not explicitly disabled, we enable them
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43 ifeq ($(DM_USE_C),)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 DM_USE_C=yes
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
47 ifeq ($(DM_USE_C),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 DM_CFLAGS+=-DDM_USE_C
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
51 # Enable SIMD routines, if requested
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 ifeq ($(DM_USE_SIMD),yes)
284
d47e8cafaa63 Add -msse2 if DM_USE_SIMD is enabled.
Matti Hamalainen <ccr@tnsp.org>
parents: 242
diff changeset
53 DM_CFLAGS+=-DDM_USE_SIMD -msse2
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
55
105
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
56 # Enable Tremor Ogg Vorbis decoder
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
57 ifeq ($(DM_USE_TREMOR),yes)
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
58 DM_CFLAGS+=-DDM_USE_TREMOR $(TREMOR_CFLAGS)
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
59 DM_LDFLAGS+=$(TREMOR_LDFLAGS)
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
60 endif
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
61
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
62
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
63 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
64 ### Filesystem
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65 ###
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
66 ifeq ($(DM_USE_PACKFS),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
67 BUILD_RES=yes
424
e88b2993801c Fix build for Win32.
Matti Hamalainen <ccr@tnsp.org>
parents: 421
diff changeset
68 DM_CFLAGS += -DDM_USE_PACKFS $(ZLIB_CFLAGS)
e88b2993801c Fix build for Win32.
Matti Hamalainen <ccr@tnsp.org>
parents: 421
diff changeset
69 DM_LDFLAGS += $(ZLIB_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
70 DMLIB_OBJS += dmpack.o dmpackutil.o
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
71 ifeq ($(DM_BUILD_TOOLS),yes)
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
72 TOOL_BINARIES += packed
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73 endif
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
74 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
75
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
76 ifeq ($(DM_USE_STDIO),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
77 BUILD_RES=yes
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
78 DM_CFLAGS += -DDM_USE_STDIO
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
80
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
81 ifeq ($(DM_USE_MEMIO),yes)
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
82 BUILD_RES=yes
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
83 DM_CFLAGS += -DDM_USE_MEMIO
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
84 endif
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
85
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
86 ifeq ($(BUILD_RES),yes)
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
87 DMLIB_OBJS += dmres.o dmresw.o
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
88 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
89
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
90 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
91 ### Graphics support
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
92 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
93
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
94 ifeq ($(DM_GFX_MISC),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
95 DM_CFLAGS += -DDM_GFX_MISC
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
96 DMLIB_OBJS += dmgfx.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
97 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
98
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
99 ifeq ($(DM_GFX_LINES),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
100 DM_CFLAGS += -DDM_GFX_LINES
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
101 DMLIB_OBJS += dmline.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
102 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
103
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
104 ifeq ($(DM_GFX_BLITS),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
105 DM_CFLAGS += -DDM_GFX_BLITS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
106 DMLIB_OBJS += dmblit.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
107 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
108
60
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
109 ifeq ($(DM_GFX_BM_TEXT),yes)
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
110 DM_CFLAGS += -DDM_GFX_BM_TEXT
64
ad1ef3f0d474 More work on the text subsystem.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
111 DMLIB_OBJS += dmtext_bm.o
160
67d2cba58a87 Add fontconv tool.
Matti Hamalainen <ccr@tnsp.org>
parents: 124
diff changeset
112 ifeq ($(DM_BUILD_TOOLS),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
113 ifeq ($(DM_USE_STDIO),yes)
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
114 TOOL_BINARIES += fontconv
160
67d2cba58a87 Add fontconv tool.
Matti Hamalainen <ccr@tnsp.org>
parents: 124
diff changeset
115 endif
60
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
116 endif
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
117 endif
60
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
118
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 ifeq ($(DM_GFX_TTF_TEXT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120 DM_CFLAGS += -DDM_GFX_TTF_TEXT
64
ad1ef3f0d474 More work on the text subsystem.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
121 DMLIB_OBJS += dmtext_ttf.o
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
123 ifeq ($(DM_BUILD_TESTS),yes)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124 ifeq ($(DM_GFX_BLITS),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
125 ifeq ($(DM_USE_STDIO),yes)
459
8ca18222db10 Remove the rather useless vview utility.
Matti Hamalainen <ccr@tnsp.org>
parents: 435
diff changeset
126 BINARIES += blittest vptest efu
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 endif
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
129 endif
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
130 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132 ifeq ($(DM_GFX_8BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133 DM_CFLAGS += -DDM_GFX_8BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
134 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
135
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
136 ifeq ($(DM_GFX_15BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
137 DM_CFLAGS += -DDM_GFX_15BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
138 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
139
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 ifeq ($(DM_GFX_16BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141 DM_CFLAGS += -DDM_GFX_15BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
142 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
143
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
144 ifeq ($(DM_GFX_32BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145 DM_CFLAGS += -DDM_GFX_15BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
147
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
148
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
149 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
150 ### miniJSS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
151 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
152 ifeq ($(JSS),yes)
105
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
153 DM_CFLAGS+=-DDM_USE_JSS
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155 ifeq ($(JSS_LIGHT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 DM_CFLAGS+=-DJSS_LIGHT -Os
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157 else
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
158 ifeq ($(JSS_USE_ASSERTS),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
159 DM_CFLAGS+=-DJSS_USE_ASSERTS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
160 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
161 ifeq ($(JSS_DEBUG),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162 DM_CFLAGS+=-DJSS_DEBUG
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
163 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
164 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
165
49
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
166 ifeq ($(JSS_MIX_FP),yes)
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
167 DM_CFLAGS+=-DJSS_MIX_FP
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
168 endif
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
169
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170 ifeq ($(JSS_SUP_THREADS),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171 DM_CFLAGS+=-DJSS_SUP_THREADS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
172 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
173
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
174
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
175 SUP_MODLOAD=no
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
176 ifeq ($(JSS_SUP_XM),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
177 SUP_MODLOAD=yes
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
178 DMLIB_OBJS+= jloadxm.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
179 DM_CFLAGS+=-DJSS_SUP_XM
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
180 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
182 ifeq ($(JSS_SUP_JSSMOD),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
183 SUP_MODLOAD=yes
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
184 DMLIB_OBJS+= jloadjss.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
185 DM_CFLAGS+=-DJSS_SUP_JSSMOD $(JSSMOD_FLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
186 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
187
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
188 ifeq ($(DM_USE_C),yes)
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
189 TARGETS += $(DMLIB)jmix_c.c
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
190 DMLIB_OBJS+=jmix_c.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
192
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
193 #ifeq ($(DM_USE_SIMD),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
194 #DMLIB_OBJS+=jmix_simd.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
195 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
196
572
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
197 ifeq ($(DM_BUILD_TOOLS),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
198 ifeq ($(DM_USE_STDIO),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
199 ifeq ($(JSS_SUP_JSSMOD),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
200 ifeq ($(JSS_SUP_XM),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
201 TOOL_BINARIES+= xm2jss
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
202 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
203 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
204 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
205 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
206 DMLIB_OBJS += jss.o jssmix.o jssmod.o jssplr.o
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
207 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
208
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
209
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
210 ### Dependancies
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
211 ifeq ($(DM_BUILD_TOOLS),yes)
435
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
212 DMLIB_OBJS += libgfx.o lib64gfx.o
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
213 ifeq ($(DM_USE_STDIO),yes)
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
214 TOOL_BINARIES+= objlink data2inc gfxconv gentab
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
215 ifeq ($(SUP_MODLOAD),yes)
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
216 TOOL_BINARIES+= viewmod mod2wav testpl
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
217 ifeq ($(DM_GFX_BLITS),yes)
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
218 TOOL_BINARIES+= view64
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
219 ifeq ($(DM_GFX_BM_TEXT),yes)
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
220 ifeq ($(DM_GFX_MISC),yes)
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
221 TOOL_BINARIES+= ppl
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
222 endif
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
223 endif
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
224 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
225 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
226
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
227 endif
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
228 endif
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
229
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
230
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
231
421
f18f07d8a731 Fix building with libpng.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
232 ifeq ($(DM_USE_LIBPNG),yes)
424
e88b2993801c Fix build for Win32.
Matti Hamalainen <ccr@tnsp.org>
parents: 421
diff changeset
233 DM_CFLAGS += -DDM_USE_LIBPNG $(LIBPNG_CFLAGS) $(ZLIB_CFLAGS)
421
f18f07d8a731 Fix building with libpng.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
234 endif
f18f07d8a731 Fix building with libpng.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
235
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
236 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
237 ### Rest of the rules
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
238 ###
334
c0aba47f8020 Move -O3 to EXTRA_CFLAGS.
Matti Hamalainen <ccr@tnsp.org>
parents: 333
diff changeset
239 CFLAGS += -g -W -Wall -DHAVE_STRING_H $(EXTRA_CFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
240 CXXFLAGS=$(CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
241
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
242 DM_CFLAGS += $(SDL_CFLAGS)
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
243 DM_LDFLAGS += $(LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
244
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
245
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
246 DMLIB_A=$(OBJPATH)dmlib.a
412
24548dba1eb6 Add simple bitstream writing functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 408
diff changeset
247 DMLIB_OBJS += dmfile.o dmbstr.o dmlib.o dmlerp.o dmstring.o \
59
c560703e85ed Add resource writing functions (only work for stdio backend)
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
248 dmargs.o dmvecmat.o dmperlin.o dmimage.o \
573
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
249 dmwav.o dmengine.o dmq3d.o
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
250
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
251 ifeq ($(DM_BUILD_TESTS),yes)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
252 BINARIES += vecmattest fptest
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
253 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
254
584
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
255 FONTCONV_BIN=$(BINPATH)fontconv$(EXEEXT)
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
256 DATA2INC_BIN=$(BINPATH)data2inc$(EXEEXT)
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
257
502
e1526854e735 Add install target for Unix Makefile that installs tool binaries only, to
Matti Hamalainen <ccr@tnsp.org>
parents: 496
diff changeset
258 TOOL_TARGETS = $(addprefix $(BINPATH),$(addsuffix $(EXEEXT),$(TOOL_BINARIES)))
598
6699a8b25535 Remove setupfont.h and setupimage.h from direct build targets, so that they
Matti Hamalainen <ccr@tnsp.org>
parents: 597
diff changeset
259 TARGETS += $(DMLIB_A) $(addprefix $(BINPATH),$(addsuffix $(EXEEXT),$(BINARIES))) $(TOOL_TARGETS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
260
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
261 all: $(TARGETS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
262
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
263 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
264 ### Generic rules
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
265 ###
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
266 $(OBJPATH)gtk%.o: $(DMLIB)gtk%.c $(DMLIB)gtk%.h
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
267 @echo " CC $+"
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
268 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS) $(GTK_CFLAGS)
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
269
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
270
322
148e981739f4 Add the (unfinished) timeline code to the build.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
271 $(OBJPATH)%.d: $(DMLIB)%.c
148e981739f4 Add the (unfinished) timeline code to the build.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
272 @echo > $@
148e981739f4 Add the (unfinished) timeline code to the build.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
273 @grep '#\s*include\s*\"' $< | sed 's/#\s*include\s\s*"\(.*\)"/\1/' | while read i; do if test -e "$$i"; then echo "$$i" >> $@; fi; done
148e981739f4 Add the (unfinished) timeline code to the build.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
274
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
275
1
6e169d87d963 Improve buildsystem to support more flexible builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
276 $(OBJPATH)%.o: $(DMLIB)%.c $(DMLIB)%.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
277 @echo " CC $<"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
278 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
279
1
6e169d87d963 Improve buildsystem to support more flexible builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
280 $(OBJPATH)%.o: $(DMLIB)%.c
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
281 @echo " CC $<"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
282 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
283
3
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
284 $(OBJPATH)%.o: %.c %.h
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
285 @echo " CC $<"
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
286 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
287
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
288 $(OBJPATH)%.o: %.c
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
289 @echo " CC $<"
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
290 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
291
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
292
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
293 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
294 ### dmlib rules
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
295 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
296
49
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
297 $(DMLIB)jmix_c.c: $(DMLIB)jmix_c_in.c $(DMLIB)jmixtmpl_c.h $(DMLIB)jmix_post_c.h
51
36e2f910219c A non-working implementation of floating point audio mixing.
Matti Hamalainen <ccr@tnsp.org>
parents: 49
diff changeset
298 (echo "#include \"jssmix.h\"" && cpp $< $(DM_CFLAGS)) | sed "s/^# .*//g" > $@
34
7908061da010 Fix building of JSS mixer parts.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
299
163
fc3c87cee960 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 160
diff changeset
300 $(OBJPATH)dmimage.o: $(DMLIB)dmimage.c $(DMLIB)stb_image.c $(DMLIB)dmimage.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
301 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
302 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
303
597
8a9361179a1a More work on the video setup screen.
Matti Hamalainen <ccr@tnsp.org>
parents: 587
diff changeset
304 $(OBJPATH)dmsimple.o: $(DMLIB)dmsimple.c $(DMLIB)dmengine.h
8a9361179a1a More work on the video setup screen.
Matti Hamalainen <ccr@tnsp.org>
parents: 587
diff changeset
305 @echo " CC $+"
8a9361179a1a More work on the video setup screen.
Matti Hamalainen <ccr@tnsp.org>
parents: 587
diff changeset
306 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
8a9361179a1a More work on the video setup screen.
Matti Hamalainen <ccr@tnsp.org>
parents: 587
diff changeset
307
192
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
308 $(OBJPATH)jssmod.o: $(DMLIB)jssmod.c $(DMLIB)jssmod.h $(DMLIB)jss.h
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
309 @echo " CC $+"
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
310 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
311
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
312 $(OBJPATH)jssplr.o: $(DMLIB)jssplr.c $(DMLIB)jssplr.h $(DMLIB)jss.h $(DMLIB)jssmod.h $(DMLIB)jssmix.h
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
313 @echo " CC $+"
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
314 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
315
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
316 $(OBJPATH)jssmix.o: $(DMLIB)jssmix.c $(DMLIB)jssmix.h $(DMLIB)jss.h
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
317 @echo " CC $+"
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
318 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
319
163
fc3c87cee960 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 160
diff changeset
320 $(OBJPATH)dmblit.o: $(DMLIB)dmblit.c $(DMLIB)dmscaledblit.h $(DMLIB)dmunscaledblit.h $(DMLIB)dmblitfunc.h $(DMLIB)dmlib.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
321 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
322 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
323
232
79dac918c81e Modularize line clipping etc. a lot, and export all line drawing and
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
324 $(OBJPATH)dmline.o: $(DMLIB)dmline.c $(DMLIB)dmdrawline.h $(DMLIB)dmlinefunc.h $(DMLIB)dmlineclip.h $(DMLIB)dmlib.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
325 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
326 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
327
163
fc3c87cee960 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 160
diff changeset
328 $(OBJPATH)dmargs.o: $(DMLIB)dmargs.c $(DMLIB)dmargs.h $(DMLIB)dmargs_int.c $(DMLIB)dmlib.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
329 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
330 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
331
435
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
332 $(OBJPATH)libgfx.o: $(DMLIB)libgfx.c $(DMLIB)libgfx.h
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
333 @echo " CC $+"
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
334 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS) $(LIBPNG_CFLAGS)
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
335
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
336
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
337 $(DMLIB)graphics/SetupFont.dmf: $(DMLIB)graphics/SetupFont.fnt
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
338 $(FONTCONV_BIN) -o $@ $<
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
339
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
340 $(DMLIB)setupfont.h: $(DMLIB)graphics/SetupFont.dmf
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
341 $(DATA2INC_BIN) -C -n engineSetupFont -t Uint8 $< $@
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
342
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
343 $(DMLIB)setupimage.h: $(DMLIB)graphics/SetupImage.png
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
344 $(DATA2INC_BIN) -C -n engineSetupImage -t Uint8 $< $@
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
345
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
346 $(DMLIB)setupbar.h: $(DMLIB)graphics/SetupMenuBar.png
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
347 $(DATA2INC_BIN) -C -n engineSetupMenuBar -t Uint8 $< $@
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
348
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
349 $(OBJPATH)dmsimple.o: $(DMLIB)setupbar.h $(DMLIB)setupfont.h $(DMLIB)setupimage.h $(DMLIB)dmsimple.c
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
350 @echo " CC $+"
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
351 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
352
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
353
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
354 $(DMLIB_A): $(addprefix $(OBJPATH),$(DMLIB_OBJS)) $(DMLIB)Makefile.gen config.mak
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
355 @echo " AR $@ $(addprefix $(OBJPATH),$(DMLIB_OBJS))"
522
2a70f5902b70 Objects being added twice to the lib archive fixed.
Matti Hamalainen <ccr@tnsp.org>
parents: 502
diff changeset
356 @$(AR) cru $@ $(addprefix $(OBJPATH),$(DMLIB_OBJS))
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
357 @$(RANLIB) $@
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
358
28
920fb22cffcf Fix build process for jmix_c.c dependancy.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
359
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
360
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
361 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
362 ### Tests and binaries
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
363 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
364 $(BINPATH)blittest$(EXEEXT): $(OBJPATH)blittest.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
365 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
366 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) -lSDL_ttf
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
367
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
368 $(BINPATH)efu$(EXEEXT): $(OBJPATH)efu.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
369 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
370 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) -lSDL_ttf
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
371
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
372 $(BINPATH)vptest$(EXEEXT): $(OBJPATH)vptest.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
373 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
374 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) -lSDL_ttf
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
375
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
376 $(BINPATH)%test$(EXEEXT): $(OBJPATH)%test.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
377 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
378 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
379
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
380 $(BINPATH)packed$(EXEEXT): $(OBJPATH)packed.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
381 @echo " LINK $+"
163
fc3c87cee960 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 160
diff changeset
382 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
383
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
384 $(BINPATH)mod2wav$(EXEEXT): $(OBJPATH)mod2wav.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
385 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
386 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
387
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
388 $(BINPATH)xm2jss$(EXEEXT): $(OBJPATH)xm2jss.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
389 @echo " LINK $+"
163
fc3c87cee960 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 160
diff changeset
390 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
391
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
392 $(BINPATH)viewmod$(EXEEXT): $(OBJPATH)viewmod.o $(DMLIB_A)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
393 @echo " LINK $+"
163
fc3c87cee960 Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 160
diff changeset
394 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
395
584
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
396
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
397 $(FONTCONV_BIN): $(OBJPATH)fontconv.o $(DMLIB_A)
160
67d2cba58a87 Add fontconv tool.
Matti Hamalainen <ccr@tnsp.org>
parents: 124
diff changeset
398 @echo " LINK $+"
289
4d053d9e6439 Add SDL_CFLAGS to fontconv build.
Matti Hamalainen <ccr@tnsp.org>
parents: 285
diff changeset
399 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) -lSDL_ttf
160
67d2cba58a87 Add fontconv tool.
Matti Hamalainen <ccr@tnsp.org>
parents: 124
diff changeset
400
587
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
401
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
402 $(BINPATH)ppl$(EXEEXT): $(DMLIB)setupfont.h $(OBJPATH)ppl.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
403 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
404 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
405
584
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
406
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
407 $(BINPATH)testpl$(EXEEXT): $(OBJPATH)testpl.o $(DMLIB_A)
71
b908fda1036e Add a simplistic skeleton of a module player with SDL-based view.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
408 @echo " LINK $+"
285
245b15cd1919 Don't link libSDL uselessly to utilities that do not actually use it.
Matti Hamalainen <ccr@tnsp.org>
parents: 284
diff changeset
409 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS)
71
b908fda1036e Add a simplistic skeleton of a module player with SDL-based view.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
410
376
40e33ad0d153 Work towards a working editor .. some day.
Matti Hamalainen <ccr@tnsp.org>
parents: 374
diff changeset
411 $(BINPATH)$(DEMO_BIN)$(EXEEXT): $(addprefix $(OBJPATH),$(DEMO_OBJS)) $(DMLIB_A)
304
9a945c87f5ec Add special rule for demo executables.
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
412 @echo " LINK $+"
9a945c87f5ec Add special rule for demo executables.
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
413 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS)
9a945c87f5ec Add special rule for demo executables.
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
414
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
415
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
416 $(BINPATH)objlink$(EXEEXT): $(OBJPATH)objlink.o $(DMLIB_A)
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
417 @echo " LINK $+"
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
418 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS)
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
419
584
923d920a8a85 Build setupfont.h and setupimage.h from source data files. Use setupfont in PPL.
Matti Hamalainen <ccr@tnsp.org>
parents: 573
diff changeset
420 $(DATA2INC_BIN): $(OBJPATH)data2inc.o $(DMLIB_A)
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
421 @echo " LINK $+"
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
422 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS)
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
423
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
424 $(BINPATH)gfxconv$(EXEEXT): $(OBJPATH)gfxconv.o $(DMLIB_A)
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
425 @echo " LINK $+"
424
e88b2993801c Fix build for Win32.
Matti Hamalainen <ccr@tnsp.org>
parents: 421
diff changeset
426 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(LIBPNG_LDFLAGS) $(ZLIB_LDFLAGS)
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
427
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
428 $(BINPATH)view64$(EXEEXT): $(OBJPATH)view64.o $(DMLIB_A)
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
429 @echo " LINK $+"
562
6a830bcd7eb9 Add zlib LDFLAGS to view64 linking phase.
Matti Hamalainen <ccr@tnsp.org>
parents: 557
diff changeset
430 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(LIBPNG_LDFLAGS) $(ZLIB_LDFLAGS) $(SDL_LDFLAGS)
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
431
496
966617f0f6cd Add a simple utility for generating different sinus, etc. value tables in c64 assembler format.
Matti Hamalainen <ccr@tnsp.org>
parents: 495
diff changeset
432 $(BINPATH)gentab$(EXEEXT): $(OBJPATH)gentab.o $(DMLIB_A)
966617f0f6cd Add a simple utility for generating different sinus, etc. value tables in c64 assembler format.
Matti Hamalainen <ccr@tnsp.org>
parents: 495
diff changeset
433 @echo " LINK $+"
966617f0f6cd Add a simple utility for generating different sinus, etc. value tables in c64 assembler format.
Matti Hamalainen <ccr@tnsp.org>
parents: 495
diff changeset
434 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) -lm
966617f0f6cd Add a simple utility for generating different sinus, etc. value tables in c64 assembler format.
Matti Hamalainen <ccr@tnsp.org>
parents: 495
diff changeset
435
407
59244a7ae37f Move c64 utilities to the engine lib, as we benefit from a common framework.
Matti Hamalainen <ccr@tnsp.org>
parents: 403
diff changeset
436
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
437 ###
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
438 ### Editor targets
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
439 ###
380
ccb6e5108953 Add EDITOR_HEADERS to the dependency.
Matti Hamalainen <ccr@tnsp.org>
parents: 379
diff changeset
440 $(EDITOR_PRO): $(DMLIB)Makefile.gen config.mak $(addprefix $(DMLIB),$(EDITOR_SOURCES) $(EDITOR_HEADERS)) $(addprefix $(OBJPATH),$(DEMO_OBJS)) $(DMLIB_A)
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
441 @echo " CREATE $@"
377
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
442 @echo "OBJECTS_DIR = $(OBJPATH)" > $@
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
443 @echo "MOC_DIR = $(OBJPATH)" >> $@
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
444 @echo "QMAKE_CXXFLAGS += $(DM_CFLAGS) $(SDL_CFLAGS)" >> $@
376
40e33ad0d153 Work towards a working editor .. some day.
Matti Hamalainen <ccr@tnsp.org>
parents: 374
diff changeset
445 @echo "QMAKE_LIBS += $(filter-out %dmsimple.o,$(filter %.o %.a,$+))" >> $@
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
446 @echo "QMAKE_LIBS += $(DM_LDFLAGS) $(SDL_LDFLAGS)" >> $@
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
447 @echo "MAKEFILE = $(EDITOR_MAKEFILE)" >> $@
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
448 @echo "CONFIG += debug" >> $@
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
449 @echo "QT += core gui opengl" >> $@
377
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
450 @echo "TARGET = $(BINPATH)ed_$(DEMO_BIN)$(EXEEXT)" >> $@
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
451 @echo "TEMPLATE = app" >> $@
370
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
452 @echo "SOURCES = $(addprefix $(DMLIB),$(EDITOR_SOURCES))" >> $@
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
453 @echo "HEADERS = $(addprefix $(DMLIB),$(EDITOR_HEADERS))" >> $@
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
454
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
455
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
456 $(EDITOR_MAKEFILE): $(EDITOR_PRO)
355
dbc62ba3f132 Work towards Qt-based editor instead.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
457 @echo " QMAKE $+"
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
458 @qmake -Wall $<
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
459
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
460 $(BINPATH)ed_$(DEMO_BIN)$(EXEEXT): $(EDITOR_MAKEFILE)
392
fc9b476c46de Pass parameters to sub-processes of make.
Matti Hamalainen <ccr@tnsp.org>
parents: 388
diff changeset
461 @$(MAKE) -f $<
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
462
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
463
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
464 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
465 ### Special targets
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
466 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
467 clean:
563
1483cd1cf0e6 Fix build by moving moc_* from TARGETS to TMPFILES.
Matti Hamalainen <ccr@tnsp.org>
parents: 562
diff changeset
468 $(RM) $(TARGETS) $(TMPFILES) $(OBJPATH)*.o
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
469