annotate Makefile.gen @ 1309:5ad7d780a09b

Move bitstream reading functions to libgfx, as they were only used there.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 19 Aug 2017 15:27:43 +0300
parents 43b13dbbdcd1
children 33d96650d93e
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 ###
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
4 ifneq ($(DMCONFIG),)
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
5 include $(DMCONFIG)
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
6 else
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 include config.mak
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
8 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
10 MKDIR ?= mkdir
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
11 MKDIR_P ?= $(MKDIR) -p
587
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
12 BINPATH ?= ./
296133d29611 Fix and improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 584
diff changeset
13 DMLIB ?= ./
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
14 TOOL_BINPATH ?= $(DMLIB)tools/
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
15 TESTS_BINPATH ?= $(DMLIB)tests/
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
16
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
17 DMLIBSRC = $(DMLIB)src/
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
18
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
19 DM_CFLAGS += -I$(DMLIBSRC)
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
20
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21 ifeq ($(EXTRA_CFLAGS),)
1275
42f5680f904d Oops, do not default to -march=corei7 :S
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
22 EXTRA_CFLAGS=-O3
42f5680f904d Oops, do not default to -march=corei7 :S
Matti Hamalainen <ccr@tnsp.org>
parents: 1272
diff changeset
23 # -march=corei7
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25
1079
47c0514d9ba4 Make the built in setup font/screen image/bar bitmap optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 1064
diff changeset
26
1048
509e6ed3a24e Finishing touches to the DM_DEBUG stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 988
diff changeset
27 ###
509e6ed3a24e Finishing touches to the DM_DEBUG stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 988
diff changeset
28 ### Extra debug messages etc?
509e6ed3a24e Finishing touches to the DM_DEBUG stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 988
diff changeset
29 ###
509e6ed3a24e Finishing touches to the DM_DEBUG stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 988
diff changeset
30 ifeq ($(DM_DEBUG),yes)
509e6ed3a24e Finishing touches to the DM_DEBUG stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 988
diff changeset
31 DM_CFLAGS += -DDM_DEBUG
1049
771e03bf9fcd Make more error message fall under DM_DEBUG.
Matti Hamalainen <ccr@tnsp.org>
parents: 1048
diff changeset
32
1095
402346b1c01d Do not enable JSS_DEBUG when DM_DEBUG is enabled, it's a bit too spammy even
Matti Hamalainen <ccr@tnsp.org>
parents: 1079
diff changeset
33 # Disable JSS_LIGHT
1049
771e03bf9fcd Make more error message fall under DM_DEBUG.
Matti Hamalainen <ccr@tnsp.org>
parents: 1048
diff changeset
34 JSS_LIGHT=no
1048
509e6ed3a24e Finishing touches to the DM_DEBUG stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 988
diff changeset
35 endif
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
36
1079
47c0514d9ba4 Make the built in setup font/screen image/bar bitmap optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 1064
diff changeset
37
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
38 ###
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
39 ### Build demo target?
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
40 ###
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
41 ifneq ($(DEMO_BIN),)
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
42 BINARIES += $(DEMO_BIN)
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
43 endif
841
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
44
1079
47c0514d9ba4 Make the built in setup font/screen image/bar bitmap optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 1064
diff changeset
45 ifeq ($(DM_BUILT_IN_SETUP),yes)
47c0514d9ba4 Make the built in setup font/screen image/bar bitmap optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 1064
diff changeset
46 DM_CFLAGS += -DDM_BUILT_IN_SETUP
47c0514d9ba4 Make the built in setup font/screen image/bar bitmap optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 1064
diff changeset
47 endif
47c0514d9ba4 Make the built in setup font/screen image/bar bitmap optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 1064
diff changeset
48
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
49
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
50 ###
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
51 ### Editor
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
52 ###
573
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
53 ifeq ($(DM_USE_TIMELINE),yes)
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
54 DM_CFLAGS+=-DDM_USE_TIMELINE
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
55 DMLIB_OBJS += dmtimeline.o dmtimelinew.o
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
56
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
57 ifeq ($(DM_BUILD_EDITOR),yes)
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
58 ifneq ($(DEMO_BIN),)
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
59 BINARIES += ed_$(DEMO_BIN)
563
1483cd1cf0e6 Fix build by moving moc_* from TARGETS to TMPFILES.
Matti Hamalainen <ccr@tnsp.org>
parents: 562
diff changeset
60 TARGETS += $(EDITOR_MAKEFILE) $(EDITOR_PRO)
1483cd1cf0e6 Fix build by moving moc_* from TARGETS to TMPFILES.
Matti Hamalainen <ccr@tnsp.org>
parents: 562
diff changeset
61 TMPFILES += $(OBJPATH)moc_*
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
62 endif
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
63 endif
573
14640d0688d3 Make timeline stuff optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 572
diff changeset
64 endif
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
65
370
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
66 EDITOR_PRO = editor.pro
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
67 EDITOR_MAKEFILE = Makefile.editor
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
68 EDITOR_SOURCES = editor/edmain.cpp editor/edgui.cpp editor/edview.cpp \
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
69 editor/edtlobj.cpp editor/edtimeline.cpp editor/edwaveform.cpp \
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
70 editor/edres.cpp
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
71 EDITOR_HEADERS = editor/edmain.h editor/edtlobj.h editor/edview.h \
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
72 editor/edtimeline.h editor/edwaveform.h editor/edres.h
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
73
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
74
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
75 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
76 ### Form additional compilation defines based on settings
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
77 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
78
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 # Enable SIMD routines, if requested
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
80 ifeq ($(DM_USE_SIMD),yes)
284
d47e8cafaa63 Add -msse2 if DM_USE_SIMD is enabled.
Matti Hamalainen <ccr@tnsp.org>
parents: 242
diff changeset
81 DM_CFLAGS+=-DDM_USE_SIMD -msse2
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
82 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
83
105
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
84 # Enable Tremor Ogg Vorbis decoder
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
85 ifeq ($(DM_USE_TREMOR),yes)
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
86 DM_CFLAGS+=-DDM_USE_TREMOR $(TREMOR_CFLAGS)
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
87 DEMO_LDFLAGS+=$(TREMOR_LDFLAGS)
105
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
88 endif
d5d27f262227 Beging merging of dmsimple2-fork into the main "engine".
Matti Hamalainen <ccr@tnsp.org>
parents: 95
diff changeset
89
0
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 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
92 ### Filesystem
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
93 ###
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
94 ifeq ($(DM_USE_PACKFS),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
95 BUILD_RES=yes
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
96 DM_CFLAGS += -DDM_USE_PACKFS
952
ffdae9cd81de Remove the dmpackutil module, move the code to packed utility
Matti Hamalainen <ccr@tnsp.org>
parents: 949
diff changeset
97 DMLIB_OBJS += dmpack.o
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
98 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
99 TOOL_BINARIES += packed
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
100 endif
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
101 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
102
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
103 ifeq ($(DM_USE_STDIO),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
104 BUILD_RES=yes
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
105 DM_CFLAGS += -DDM_USE_STDIO
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
106 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
107
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
108 ifeq ($(DM_USE_MEMIO),yes)
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
109 BUILD_RES=yes
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
110 DM_CFLAGS += -DDM_USE_MEMIO
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
111 endif
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
112
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
113 ifeq ($(BUILD_RES),yes)
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
114 DMLIB_OBJS += dmres.o dmresw.o
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
115 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
116
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
117 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 ### Graphics support
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 ifeq ($(DM_GFX_MISC),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122 DM_CFLAGS += -DDM_GFX_MISC
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 DMLIB_OBJS += dmgfx.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
125
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
126 ifeq ($(DM_GFX_LINES),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 DM_CFLAGS += -DDM_GFX_LINES
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 DMLIB_OBJS += dmline.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
129 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
130
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131 ifeq ($(DM_GFX_BLITS),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132 DM_CFLAGS += -DDM_GFX_BLITS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133 DMLIB_OBJS += dmblit.o
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
60
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
136 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
137 DM_CFLAGS += -DDM_GFX_BM_TEXT
64
ad1ef3f0d474 More work on the text subsystem.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
138 DMLIB_OBJS += dmtext_bm.o
160
67d2cba58a87 Add fontconv tool.
Matti Hamalainen <ccr@tnsp.org>
parents: 124
diff changeset
139 ifeq ($(DM_BUILD_TOOLS),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
140 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
141 TOOL_BINARIES += fontconv
160
67d2cba58a87 Add fontconv tool.
Matti Hamalainen <ccr@tnsp.org>
parents: 124
diff changeset
142 endif
60
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
143 endif
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
144 endif
60
f28cd66356f6 Initial work for bitmapped fonts and text drawing. Also moved TTF header
Matti Hamalainen <ccr@tnsp.org>
parents: 59
diff changeset
145
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146 ifeq ($(DM_GFX_TTF_TEXT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
147 DM_CFLAGS += -DDM_GFX_TTF_TEXT
64
ad1ef3f0d474 More work on the text subsystem.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
148 DMLIB_OBJS += dmtext_ttf.o
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
149
690
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
150 ifeq ($(DM_BUILD_TOOLS),yes)
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
151 ifeq ($(DM_GFX_BLITS),yes)
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
152 TOOL_BINARIES += auval
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
153 endif
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
154 endif
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
155
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
156 ifeq ($(DM_BUILD_TESTS),yes)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157 ifeq ($(DM_GFX_BLITS),yes)
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
158 ifeq ($(DM_USE_STDIO),yes)
959
36aec8ff670a Remove vptest.
Matti Hamalainen <ccr@tnsp.org>
parents: 953
diff changeset
159 TESTS_BINARIES += blittest efu
0
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 endif
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
162 endif
1272
acae5f8ebc67 Fix build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 1206
diff changeset
163 else
acae5f8ebc67 Fix build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 1206
diff changeset
164 SDL_TTF_LDFLAGS=
acae5f8ebc67 Fix build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 1206
diff changeset
165 SDL_TTF_CFLAGS=
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
166 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
167
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
168 ifeq ($(DM_GFX_8BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
169 DM_CFLAGS += -DDM_GFX_8BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
172 ifeq ($(DM_GFX_15BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
173 DM_CFLAGS += -DDM_GFX_15BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
174 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
175
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
176 ifeq ($(DM_GFX_16BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
177 DM_CFLAGS += -DDM_GFX_15BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
178 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
179
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
180 ifeq ($(DM_GFX_32BIT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181 DM_CFLAGS += -DDM_GFX_15BIT
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
182 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
183
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
184
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
185 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
186 ### miniJSS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
187 ###
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
188 MINIJSS=$(DMLIB)/minijss/
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
189
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
190
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191 ifeq ($(JSS),yes)
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
192 DM_CFLAGS+=-DDM_USE_JSS -I$(MINIJSS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
193
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
194 ifeq ($(JSS_LIGHT),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
195 DM_CFLAGS+=-DJSS_LIGHT -Os
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
196 else
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
197 ifeq ($(JSS_USE_ASSERTS),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
198 DM_CFLAGS+=-DJSS_USE_ASSERTS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
199 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
200 ifeq ($(JSS_DEBUG),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
201 DM_CFLAGS+=-DJSS_DEBUG
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
202 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
203 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
204
49
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
205 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
206 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
207 endif
033c660c25f5 Restructure module playing, removing 8bit sample mixing (output can still be
Matti Hamalainen <ccr@tnsp.org>
parents: 34
diff changeset
208
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
209 ifeq ($(JSS_SUP_THREADS),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
210 DM_CFLAGS+=-DJSS_SUP_THREADS
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
211 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
212
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
213
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
214 SUP_MODLOAD=no
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
215 ifeq ($(JSS_SUP_XM),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
216 SUP_MODLOAD=yes
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
217 DMLIB_OBJS+= jloadxm.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
218 DM_CFLAGS+=-DJSS_SUP_XM
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
219 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
220
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
221 ifeq ($(JSS_SUP_JSSMOD),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
222 SUP_MODLOAD=yes
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
223 DMLIB_OBJS+= jloadjss.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
224 DM_CFLAGS+=-DJSS_SUP_JSSMOD $(JSSMOD_FLAGS)
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
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
227 ifeq ($(DM_USE_C),yes)
844
5ea0bf4379b1 Oops, -DDM_USE_C was not in the build process ...
Matti Hamalainen <ccr@tnsp.org>
parents: 842
diff changeset
228 DM_CFLAGS+=-DDM_USE_C
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
229 TARGETS += $(MINIJSS)jmix_c.c
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
230 DMLIB_OBJS+=jmix_c.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
231 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
232
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
233 #ifeq ($(DM_USE_SIMD),yes)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
234 #DMLIB_OBJS+=jmix_simd.o
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
235 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
236
572
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
237 ifeq ($(DM_BUILD_TOOLS),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
238 ifeq ($(DM_USE_STDIO),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
239 ifeq ($(JSS_SUP_JSSMOD),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
240 ifeq ($(JSS_SUP_XM),yes)
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
241 TOOL_BINARIES+= xm2jss
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
242 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
243 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
244 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
245 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
246 DMLIB_OBJS += jss.o jssmix.o jssmod.o jssplr.o
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
247 endif
5a051ead61db Fix build.
Matti Hamalainen <ccr@tnsp.org>
parents: 563
diff changeset
248
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
249
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
250 ### Dependancies
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
251 ifeq ($(DM_BUILD_TOOLS),yes)
124
d5cfd29c87c4 Rename some conditional compilation directives.
Matti Hamalainen <ccr@tnsp.org>
parents: 105
diff changeset
252 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
253 TOOL_BINARIES+= objlink data2inc gfxconv gentab
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
254 ifeq ($(SUP_MODLOAD),yes)
942
38cad00b41dd Rename viewmod utility to dumpmod.
Matti Hamalainen <ccr@tnsp.org>
parents: 912
diff changeset
255 TOOL_BINARIES+= dumpmod mod2wav
667
f9f98a0f4e9a Rename testpl to plrtest.
Matti Hamalainen <ccr@tnsp.org>
parents: 665
diff changeset
256 TESTS_BINARIES+= plrtest
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
257 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
258 TOOL_BINARIES+= view64
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
259 ifeq ($(DM_GFX_BM_TEXT),yes)
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
260 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
261 TOOL_BINARIES+= ppl
166
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
262 endif
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
263 endif
112eb95f2fba Improve build system granularity.
Matti Hamalainen <ccr@tnsp.org>
parents: 164
diff changeset
264 endif
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
265 endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
266
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
267 endif
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
268 endif
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
269
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
270
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
271 ### libPNG handling
421
f18f07d8a731 Fix building with libpng.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
272 ifeq ($(DM_USE_LIBPNG),yes)
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
273 DM_CFLAGS += -DDM_USE_LIBPNG $(LIBPNG_CFLAGS)
421
f18f07d8a731 Fix building with libpng.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
274 endif
f18f07d8a731 Fix building with libpng.
Matti Hamalainen <ccr@tnsp.org>
parents: 412
diff changeset
275
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
276
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
277 ### Check requirements for zlib
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
278 ifeq ($(DM_USE_ZLIB),yes)
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
279 DM_CFLAGS += -DDM_USE_ZLIB $(ZLIB_CFLAGS)
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
280 DEMO_LDFLAGS += $(ZLIB_LDFLAGS)
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
281 else
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
282 DEMO_LDFLAGS +=
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
283 endif
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
284 DM_ZLIB_LDFLAGS = $(ZLIB_LDFLAGS)
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
285
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
286
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
287 ### What tests to build?
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
288 ifeq ($(DM_BUILD_TESTS),yes)
1206
0f07f752cd73 Rename one module under tests/
Matti Hamalainen <ccr@tnsp.org>
parents: 1173
diff changeset
289 TESTS_BINARIES += vecmattest fptest evaltest dzlib
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
290 endif
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
291
716
24096d1ef794 Make pre-built header versions of assets not depend on fontconv and
Matti Hamalainen <ccr@tnsp.org>
parents: 714
diff changeset
292 FONTCONV_BIN=fontconv
24096d1ef794 Make pre-built header versions of assets not depend on fontconv and
Matti Hamalainen <ccr@tnsp.org>
parents: 714
diff changeset
293 DATA2INC_BIN=data2inc
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
294
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
295
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
296 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
297 ### Rest of the rules
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
298 ###
334
c0aba47f8020 Move -O3 to EXTRA_CFLAGS.
Matti Hamalainen <ccr@tnsp.org>
parents: 333
diff changeset
299 CFLAGS += -g -W -Wall -DHAVE_STRING_H $(EXTRA_CFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
300 CXXFLAGS=$(CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
301
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
302 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
303 DM_LDFLAGS += $(LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
304
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
305
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
306 DMLIB_A=$(OBJPATH)dmlib.a
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
307 DMLIB_OBJS += \
1309
5ad7d780a09b Move bitstream reading functions to libgfx, as they were only used there.
Matti Hamalainen <ccr@tnsp.org>
parents: 1307
diff changeset
308 dmfile.o dmlib.o dmcurves.o dmstring.o \
59
c560703e85ed Add resource writing functions (only work for stdio backend)
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
309 dmargs.o dmvecmat.o dmperlin.o dmimage.o \
978
fecf3967abee Move lerp functions from dmlerp.c to dmcurves.c, too.
Matti Hamalainen <ccr@tnsp.org>
parents: 976
diff changeset
310 dmwav.o dmengine.o dmfft.o dmzlib.o
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
311
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
312
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
313 TESTS_TARGETS = $(addprefix $(TESTS_BINPATH),$(addsuffix $(EXEEXT),$(TESTS_BINARIES)))
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
314 TOOL_TARGETS = $(addprefix $(TOOL_BINPATH),$(addsuffix $(EXEEXT),$(TOOL_BINARIES)))
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
315 TARGETS += $(DMLIB_A) $(addprefix $(BINPATH),$(addsuffix $(EXEEXT),$(BINARIES))) \
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
316 $(TOOL_TARGETS) $(TESTS_TARGETS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
317
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
318 NONBUILD += $(OBJPATH) $(BINPATH)
841
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
319
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
320
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
321 all: $(NONBUILD) $(TARGETS)
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
322
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
323
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
324 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
325 ### Generic rules
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
326 ###
841
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
327 $(OBJPATH):
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
328 $(MKDIR_P) $@
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
329
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
330 $(BINPATH):
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
331 $(MKDIR_P) $@
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
332
dd35d66c3714 Improve build process.
Matti Hamalainen <ccr@tnsp.org>
parents: 840
diff changeset
333
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
334 $(OBJPATH)%.o: $(MINIJSS)%.c $(MINIJSS)%.h
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
335 @echo " CC $<"
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
336 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
337
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
338 $(OBJPATH)%.o: $(MINIJSS)%.c
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
339 @echo " CC $<"
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
340 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
341
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
342
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
343 $(OBJPATH)%.o: $(DMLIB)tests/%.c $(DMLIB)tests/%.h
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
344 @echo " CC $<"
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
345 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
346
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
347 $(OBJPATH)%.o: $(DMLIB)tests/%.c
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
348 @echo " CC $<"
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
349 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
350
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
351
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
352 $(OBJPATH)%.o: $(DMLIB)tools/%.c $(DMLIB)tools/%.h
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
353 @echo " CC $<"
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
354 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
355
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
356 $(OBJPATH)%.o: $(DMLIB)tools/%.c
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
357 @echo " CC $<"
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
358 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
359
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
360
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
361
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
362 $(OBJPATH)%.o: $(DMLIBSRC)%.c $(DMLIBSRC)%.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
363 @echo " CC $<"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
364 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
365
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
366 $(OBJPATH)%.o: $(DMLIBSRC)%.c
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
367 @echo " CC $<"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
368 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
369
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
370
3
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
371 $(OBJPATH)%.o: %.c %.h
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
372 @echo " CC $<"
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
373 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
374
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
375 $(OBJPATH)%.o: %.c
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
376 @echo " CC $<"
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
377 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
82fc316e70d0 Enable out of tree building.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
378
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 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
381 ### dmlib rules
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
382 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
383
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
384 $(MINIJSS)jmix_c.c: $(MINIJSS)jmix_c_in.c $(MINIJSS)jmixtmpl_c.h $(MINIJSS)jmix_post_c.h
51
36e2f910219c A non-working implementation of floating point audio mixing.
Matti Hamalainen <ccr@tnsp.org>
parents: 49
diff changeset
385 (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
386
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
387 $(OBJPATH)dmimage.o: $(DMLIBSRC)dmimage.c $(DMLIBSRC)stb_image.c $(DMLIBSRC)dmimage.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
388 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
389 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
390
597
8a9361179a1a More work on the video setup screen.
Matti Hamalainen <ccr@tnsp.org>
parents: 587
diff changeset
391
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
392 $(OBJPATH)jssmod.o: $(MINIJSS)jssmod.c $(MINIJSS)jssmod.h $(MINIJSS)jss.h
192
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
393 @echo " CC $+"
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
394 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
395
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
396 $(OBJPATH)jssplr.o: $(MINIJSS)jssplr.c $(MINIJSS)jssplr.h $(MINIJSS)jss.h $(MINIJSS)jssmod.h $(MINIJSS)jssmix.h
192
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
397 @echo " CC $+"
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
398 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
399
658
c430112449a7 Move miniJSS into a subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 655
diff changeset
400 $(OBJPATH)jssmix.o: $(MINIJSS)jssmix.c $(MINIJSS)jssmix.h $(MINIJSS)jss.h
192
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
401 @echo " CC $+"
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
402 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
2a3b00915beb Add some depencies.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
403
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
404 $(OBJPATH)dmblit.o: $(DMLIBSRC)dmblit.c $(DMLIBSRC)dmscaledblit.h $(DMLIBSRC)dmunscaledblit.h $(DMLIBSRC)dmblitfunc.h $(DMLIBSRC)dmlib.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
405 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
406 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
407
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
408 $(OBJPATH)dmline.o: $(DMLIBSRC)dmline.c $(DMLIBSRC)dmdrawline.h $(DMLIBSRC)dmlinefunc.h $(DMLIBSRC)dmlineclip.h $(DMLIBSRC)dmlib.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
409 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
410 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
411
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
412 $(OBJPATH)dmargs.o: $(DMLIBSRC)dmargs.c $(DMLIBSRC)dmargs.h $(DMLIBSRC)dmargs_int.c $(DMLIBSRC)dmlib.h
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
413 @echo " CC $+"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
414 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
415
1307
43b13dbbdcd1 Moved libgfx to tools/ as it's not really a very generic piece of code that
Matti Hamalainen <ccr@tnsp.org>
parents: 1275
diff changeset
416 $(OBJPATH)libgfx.o: $(DMLIB)tools/libgfx.c $(DMLIB)tools/libgfx.h
435
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
417 @echo " CC $+"
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
418 @$(CC) $(CFLAGS) -c -o $@ $< $(DM_CFLAGS) $(LIBPNG_CFLAGS)
e4a3f183e463 Modularize some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
419
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
420
716
24096d1ef794 Make pre-built header versions of assets not depend on fontconv and
Matti Hamalainen <ccr@tnsp.org>
parents: 714
diff changeset
421 $(DMLIB)assets/SetupFont.dmf: $(DMLIB)assets/SetupFont.fnt
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
422 $(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
423
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
424 $(DMLIBSRC)setupfont.h: $(DMLIB)assets/SetupFont.dmf
660
fc5e3e6d9097 Make converted asset headers have no comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 659
diff changeset
425 $(DATA2INC_BIN) -q -C -n engineSetupFont -t Uint8 $< $@
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
426
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
427 $(DMLIBSRC)setupimage.h: $(DMLIB)assets/SetupImage.png
660
fc5e3e6d9097 Make converted asset headers have no comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 659
diff changeset
428 $(DATA2INC_BIN) -q -C -n engineSetupImage -t Uint8 $< $@
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
429
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
430 $(DMLIBSRC)setupmenubar.h: $(DMLIB)assets/SetupMenuBar.png
660
fc5e3e6d9097 Make converted asset headers have no comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 659
diff changeset
431 $(DATA2INC_BIN) -q -C -n engineSetupMenuBar -t Uint8 $< $@
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
432
659
bfad79dc1740 Fix build process depencies for asset conversions.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
433
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
434 $(OBJPATH)dmsimple.o: $(DMLIBSRC)dmsimple.c $(DMLIBSRC)dmengine.h \
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
435 $(DMLIBSRC)setupmenubar.h $(DMLIBSRC)setupfont.h \
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
436 $(DMLIBSRC)setupimage.h $(DMLIBSRC)dmsimple.c
606
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
437 @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
438 @$(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
439
a0082ce261c8 Add setup menu bar image conversion to build process, move some things around.
Matti Hamalainen <ccr@tnsp.org>
parents: 598
diff changeset
440
2
9a8355b47e1c Various improvements in the build system to add granularity
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
441 $(DMLIB_A): $(addprefix $(OBJPATH),$(DMLIB_OBJS)) $(DMLIB)Makefile.gen config.mak
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
442 @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
443 @$(AR) cru $@ $(addprefix $(OBJPATH),$(DMLIB_OBJS))
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
444 @$(RANLIB) $@
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
445
28
920fb22cffcf Fix build process for jmix_c.c dependancy.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
446
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
447
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
448 ###
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
449 ### Tests
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
450 ###
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
451 $(TESTS_BINPATH)blittest$(EXEEXT): $(OBJPATH)blittest.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
452 @echo " LINK $+"
891
fface5a23b2a Link to -lm and fix to match changes in dmperlin.
Matti Hamalainen <ccr@tnsp.org>
parents: 887
diff changeset
453 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(SDL_TTF_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
454
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
455 $(TESTS_BINPATH)efu$(EXEEXT): $(OBJPATH)efu.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
456 @echo " LINK $+"
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
457 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(SDL_TTF_LDFLAGS) $(DM_ZLIB_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
458
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
459 $(TESTS_BINPATH)vptest$(EXEEXT): $(OBJPATH)vptest.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
460 @echo " LINK $+"
891
fface5a23b2a Link to -lm and fix to match changes in dmperlin.
Matti Hamalainen <ccr@tnsp.org>
parents: 887
diff changeset
461 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(SDL_TTF_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
462
724
12ddeef948fc Move dm_print_optree() to dmevalw.c
Matti Hamalainen <ccr@tnsp.org>
parents: 716
diff changeset
463 $(TESTS_BINPATH)evaltest$(EXEEXT): $(OBJPATH)evaltest.o $(OBJPATH)dmeval.o $(OBJPATH)dmevalw.o $(DMLIB_A)
668
69337f2fc4a4 Add evaltest.
Matti Hamalainen <ccr@tnsp.org>
parents: 667
diff changeset
464 @echo " LINK $+"
1142
0b5fdabaada5 Add necessary flag substitutions to where they are needed.
Matti Hamalainen <ccr@tnsp.org>
parents: 1140
diff changeset
465 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) -lm
668
69337f2fc4a4 Add evaltest.
Matti Hamalainen <ccr@tnsp.org>
parents: 667
diff changeset
466
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
467 $(TESTS_BINPATH)%test$(EXEEXT): $(OBJPATH)%test.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
468 @echo " LINK $+"
1142
0b5fdabaada5 Add necessary flag substitutions to where they are needed.
Matti Hamalainen <ccr@tnsp.org>
parents: 1140
diff changeset
469 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
470
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
471 $(TESTS_BINPATH)plrtest$(EXEEXT): $(OBJPATH)plrtest.o $(DMLIB_A)
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
472 @echo " LINK $+"
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
473 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(DM_ZLIB_LDFLAGS) -lm
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
474
1206
0f07f752cd73 Rename one module under tests/
Matti Hamalainen <ccr@tnsp.org>
parents: 1173
diff changeset
475 $(TESTS_BINPATH)dzlib$(EXEEXT): $(OBJPATH)dzlib.o $(DMLIB_A)
1064
a6c5be712b53 Add dmzlib / zlib test utility.
Matti Hamalainen <ccr@tnsp.org>
parents: 1049
diff changeset
476 @echo " LINK $+"
a6c5be712b53 Add dmzlib / zlib test utility.
Matti Hamalainen <ccr@tnsp.org>
parents: 1049
diff changeset
477 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(DM_ZLIB_LDFLAGS)
a6c5be712b53 Add dmzlib / zlib test utility.
Matti Hamalainen <ccr@tnsp.org>
parents: 1049
diff changeset
478
653
469119cab5b2 More cleanup work. Build is broken for now.
Matti Hamalainen <ccr@tnsp.org>
parents: 624
diff changeset
479
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
480 ###
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
481 ### Tools
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
482 ###
716
24096d1ef794 Make pre-built header versions of assets not depend on fontconv and
Matti Hamalainen <ccr@tnsp.org>
parents: 714
diff changeset
483 $(TOOL_BINPATH)fontconv$(EXEEXT): $(OBJPATH)fontconv.o $(DMLIB_A)
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
484 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
485 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) $(SDL_TTF_LDFLAGS) $(DM_ZLIB_LDFLAGS) -lm
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
486
716
24096d1ef794 Make pre-built header versions of assets not depend on fontconv and
Matti Hamalainen <ccr@tnsp.org>
parents: 714
diff changeset
487 $(TOOL_BINPATH)data2inc$(EXEEXT): $(OBJPATH)data2inc.o $(DMLIB_A)
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
488 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
489 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS)
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
490
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
491 $(TOOL_BINPATH)packed$(EXEEXT): $(OBJPATH)packed.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
492 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
493 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) $(DM_ZLIB_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
494
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
495 $(TOOL_BINPATH)mod2wav$(EXEEXT): $(OBJPATH)mod2wav.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
496 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
497 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) $(DM_ZLIB_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
498
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
499 $(TOOL_BINPATH)xm2jss$(EXEEXT): $(OBJPATH)xm2jss.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
500 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
501 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) $(DM_ZLIB_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
502
942
38cad00b41dd Rename viewmod utility to dumpmod.
Matti Hamalainen <ccr@tnsp.org>
parents: 912
diff changeset
503 $(TOOL_BINPATH)dumpmod$(EXEEXT): $(OBJPATH)dumpmod.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
504 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
505 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) $(DM_ZLIB_LDFLAGS)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
506
812
1e5cf1144f36 Move library source under src/ subdirectory.
Matti Hamalainen <ccr@tnsp.org>
parents: 749
diff changeset
507 $(TOOL_BINPATH)ppl$(EXEEXT): $(DMLIBSRC)setupfont.h $(OBJPATH)ppl.o $(DMLIB_A)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
508 @echo " LINK $+"
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
509 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(DM_ZLIB_LDFLAGS) $(SDL_LDFLAGS) -lm
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
510
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
511 $(TOOL_BINPATH)objlink$(EXEEXT): $(OBJPATH)objlink.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
512 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
513 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_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
514
1307
43b13dbbdcd1 Moved libgfx to tools/ as it's not really a very generic piece of code that
Matti Hamalainen <ccr@tnsp.org>
parents: 1275
diff changeset
515 $(TOOL_BINPATH)gfxconv$(EXEEXT): $(OBJPATH)gfxconv.o $(OBJPATH)lib64gfx.o $(OBJPATH)libgfx.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
516 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
517 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) $(LIBPNG_LDFLAGS) $(DM_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
518
1307
43b13dbbdcd1 Moved libgfx to tools/ as it's not really a very generic piece of code that
Matti Hamalainen <ccr@tnsp.org>
parents: 1275
diff changeset
519 $(TOOL_BINPATH)view64$(EXEEXT): $(OBJPATH)view64.o $(OBJPATH)lib64gfx.o $(OBJPATH)libgfx.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
520 @echo " LINK $+"
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
521 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(LIBPNG_LDFLAGS) $(DM_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
522
714
0ad76fa080ca Improve build system by adding support for separate binary paths for
Matti Hamalainen <ccr@tnsp.org>
parents: 690
diff changeset
523 $(TOOL_BINPATH)gentab$(EXEEXT): $(OBJPATH)gentab.o $(DMLIB_A)
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
524 @echo " LINK $+"
1140
fa9a79daa5da Cross-build process fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 1117
diff changeset
525 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(TOOL_LDFLAGS) -lm
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
526
724
12ddeef948fc Move dm_print_optree() to dmevalw.c
Matti Hamalainen <ccr@tnsp.org>
parents: 716
diff changeset
527 $(TOOL_BINPATH)auval$(EXEEXT): $(OBJPATH)auval.o $(OBJPATH)dmeval.o $(OBJPATH)dmevalw.o $(DMLIB_A)
690
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
528 @echo " LINK $+"
880
951297a7938a Improve build system.
Matti Hamalainen <ccr@tnsp.org>
parents: 844
diff changeset
529 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(SDL_TTF_LDFLAGS) -lm
690
84811c6dd32d Added Auval with removed Lua dependancy, using dmeval only.
Matti Hamalainen <ccr@tnsp.org>
parents: 668
diff changeset
530
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
531
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
532 ###
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
533 ### Demo binary
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
534 ###
887
65a5251898a0 Fix build system for empty DEMO_BIN target.
Matti Hamalainen <ccr@tnsp.org>
parents: 880
diff changeset
535 ifneq ($(DEMO_BIN),)
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
536 $(BINPATH)$(DEMO_BIN)$(EXEEXT): $(addprefix $(OBJPATH),$(DEMO_OBJS)) $(DMLIB_A)
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
537 @echo " LINK $+"
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
538 @$(CC) -o $@ $(filter %.o %.a,$+) $(DM_LDFLAGS) $(SDL_LDFLAGS) $(DEMO_LDFLAGS) -lm
887
65a5251898a0 Fix build system for empty DEMO_BIN target.
Matti Hamalainen <ccr@tnsp.org>
parents: 880
diff changeset
539 endif
665
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
540
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
541
f9a3b0e8f0fc Clean up build system a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
542 ###
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
543 ### Editor targets
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
544 ###
380
ccb6e5108953 Add EDITOR_HEADERS to the dependency.
Matti Hamalainen <ccr@tnsp.org>
parents: 379
diff changeset
545 $(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
546 @echo " CREATE $@"
377
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
547 @echo "OBJECTS_DIR = $(OBJPATH)" > $@
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
548 @echo "MOC_DIR = $(OBJPATH)" >> $@
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
549 @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
550 @echo "QMAKE_LIBS += $(filter-out %dmsimple.o,$(filter %.o %.a,$+))" >> $@
986
a25b6da1c4a8 Begin process of making zlib optional for some things.
Matti Hamalainen <ccr@tnsp.org>
parents: 978
diff changeset
551 @echo "QMAKE_LIBS += $(DM_LDFLAGS) $(SDL_LDFLAGS) $(DEMO_LDFLAGS)" >> $@
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
552 @echo "MAKEFILE = $(EDITOR_MAKEFILE)" >> $@
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
553 @echo "CONFIG += debug" >> $@
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
554 @echo "QT += core gui opengl" >> $@
377
a41d0db5fa36 Improve building.
Matti Hamalainen <ccr@tnsp.org>
parents: 376
diff changeset
555 @echo "TARGET = $(BINPATH)ed_$(DEMO_BIN)$(EXEEXT)" >> $@
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
556 @echo "TEMPLATE = app" >> $@
370
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
557 @echo "SOURCES = $(addprefix $(DMLIB),$(EDITOR_SOURCES))" >> $@
7e640b1f990b Fix build process for out of tree builds.
Matti Hamalainen <ccr@tnsp.org>
parents: 357
diff changeset
558 @echo "HEADERS = $(addprefix $(DMLIB),$(EDITOR_HEADERS))" >> $@
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
559
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
560
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
561 $(EDITOR_MAKEFILE): $(EDITOR_PRO)
355
dbc62ba3f132 Work towards Qt-based editor instead.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
562 @echo " QMAKE $+"
357
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
563 @qmake -Wall $<
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
564
1b8362a26692 Work towards Qt based editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
565 $(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
566 @$(MAKE) -f $<
344
9cf1a58b0234 Beginnings of the editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 343
diff changeset
567
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
568
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
569 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
570 ### Special targets
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
571 ###
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
572 clean:
988
027083293a8e Change 'make clean' rule so that it ignores possible errors.
Matti Hamalainen <ccr@tnsp.org>
parents: 986
diff changeset
573 -$(RM) $(TARGETS) $(TMPFILES) $(OBJPATH)*.o
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
574