Subversion Repositories Kolibri OS

Rev

Rev 2272 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1944 yogev_ezra 1
# General rule for naming: variables with CAPITALIZED names hold settings,
2
# you can - and are expected - to modify it; variables with lowercase names
3
# are intermediate variables and macroses not to be modified unless you
4
# know what you're doing.
5
 
6
# Define directories for destination, source repository, sources of kernel, sources of programs.
7
BUILD_DIR:=build
8
REPOSITORY:=../..
9
KERNEL:=$(REPOSITORY)/kernel/trunk
10
PROGS:=$(REPOSITORY)/programs
11
 
12
# Docpak requires some documents; we place them
13
# into 'docs' subdir and communicate with FASM
14
# through environment var DOCDIR.
15
DOCDIR:=docs/
16
export DOCDIR
17
 
18
# Because most programs are written in FASM and have
19
# the common structure of one main .asm file possibly including
20
# several .inc files, we handle this case separately.
21
# Namely, we organize one big list of such programs
22
# (FASM_PROGRAMS, see below) containing name of local binary file,
23
# name of file inside kolibri.img and name of the source file.
24
# This list is maintained by hand, and the rest is done with some macroses...
25
# well, slightly complicated macroses - however, you do not need to
26
# understand them in order to maintain the list.
27
# To add a FASM program with one .asm file, just
28
# add the corresponding item to the list and enjoy
29
# the power of GNU make.
30
 
31
# The list of all FASM programs with one main FASM file.
32
# Every item consists of three parts, separated by ':'.
33
# First part is the real name of binary file in $(BUILD_DIR)
34
# as it should be produced by make.
35
# Second part is the name of a file inside kolibri.img,
36
# usually uppercased version of first part - to save space
37
# for FAT filesystem.
38
# Third part is the name of the source file.
39
# Spaces separate items, so spaces in names should be
40
# represented as '|'.
41
FASM_PROGRAMS:=\
42
 @clip:@CLIP:$(PROGS)/system/clip/trunk/@clip.ASM \
43
 @menu:@MENU:$(PROGS)/system/menu/trunk/menu.asm \
44
 @notify:@NOTIFY:$(PROGS)/system/notify/trunk/@notify.asm \
45
 @panel:@PANEL:$(PROGS)/system/panel/trunk/@PANEL.ASM \
46
 @rb:@RB:$(PROGS)/system/rb/trunk/@RB.ASM \
47
 @ss:@SS:$(PROGS)/system/ss/trunk/@ss.asm\
2087 dunkaist 48
 asciivju:ASCIIVJU:$(PROGS)/develop/asciivju/trunk/asciivju.asm \
1944 yogev_ezra 49
 calc:CALC:$(PROGS)/other/calc/trunk/calc.asm \
50
 calendar:CALENDAR:$(PROGS)/system/calendar/trunk/calendar.asm \
51
 commouse:COMMOUSE:$(PROGS)/system/commouse/trunk/commouse.asm \
52
 cpu:CPU:$(PROGS)/system/cpu/trunk/cpu.asm \
53
 cpuid:CPUID:$(PROGS)/system/cpuid/trunk/CPUID.ASM \
54
 desktop:DESKTOP:$(PROGS)/system/desktop/trunk/desktop.asm \
55
 disptest:DISPTEST:$(PROGS)/system/disptest/trunk/disptest.ASM \
56
 docpak:DOCPAK:$(PROGS)/system/docpack/trunk/docpack.asm \
57
 end:END:$(PROGS)/system/end/light/end.asm \
58
 gmon:GMON:$(PROGS)/system/gmon/gmon.asm \
59
 hdd_info:HDD_INFO:$(PROGS)/system/hdd_info/trunk/hdd_info.asm \
60
 icon:ICON:$(PROGS)/system/icon/trunk/icon.asm \
61
 kbd:KBD:$(PROGS)/system/kbd/trunk/kbd.ASM \
62
 kpack:KPACK:$(PROGS)/other/kpack/trunk/kpack.asm \
63
 launcher:LAUNCHER:$(PROGS)/system/launcher/trunk/launcher.asm \
64
 magnify:MAGNIFY:$(PROGS)/demos/magnify/trunk/magnify.asm \
65
 mgb:MGB:$(PROGS)/system/mgb/trunk/mgb.asm \
66
 mousemul:MOUSEMUL:$(PROGS)/system/mousemul/trunk/mousemul.asm \
67
 mykey:MYKEY:$(PROGS)/system/MyKey/trunk/MyKey.asm \
68
 pcidev:PCIDEV:$(PROGS)/system/pcidev/trunk/PCIDEV.ASM \
69
 period:PERIOD:$(PROGS)/other/period/trunk/period.asm \
70
 pic4:PIC4:$(PROGS)/media/pic4/trunk/pic4.asm \
71
 rdsave:RDSAVE:$(PROGS)/system/rdsave/trunk/rdsave.asm \
72
 rtfread:RTFREAD:$(PROGS)/other/rtfread/trunk/rtfread.asm \
73
 run:RUN:$(PROGS)/system/run/trunk/run.asm \
74
 scrshoot:SCRSHOOT:$(PROGS)/media/scrshoot/scrshoot.asm \
75
 setup:SETUP:$(PROGS)/system/setup/trunk/setup.asm \
76
 test:TEST:$(PROGS)/system/test/trunk/test.asm \
77
 tinypad:TINYPAD:$(PROGS)/develop/tinypad/trunk/tinypad.asm \
78
 zkey:ZKEY:$(PROGS)/system/zkey/trunk/ZKEY.ASM \
79
 3d/3dcube2:3D/3DCUBE2:$(PROGS)/demos/3dcube2/trunk/3DCUBE2.ASM \
2272 leency 80
 3d/3dsheart:3D/3DSHEART:$(PROGS)/demos/3dsheart/trunk/3dsheart.asm \
2270 leency 81
 3d/3dwav:3D/3DWAV:$(PROGS)/demos/3dwav/trunk/3dwav.asm \
1944 yogev_ezra 82
 3d/crownscr:3D/CROWNSCR:$(PROGS)/demos/crownscr/trunk/crownscr.asm  \
83
 3d/flatwav:3D/FLATWAV:$(PROGS)/demos/flatwav/trunk/FLATWAV.ASM \
84
 3d/free3d04:3D/FREE3D04:$(PROGS)/demos/free3d04/trunk/free3d04.asm \
85
 3d/view3ds:3D/VIEW3DS:$(PROGS)/demos/3DS/VIEW3DS.ASM \
86
 demos/bcdclk:DEMOS/BCDCLK:$(PROGS)/demos/bcdclk/trunk/bcdclk.asm \
87
 demos/circle:DEMOS/CIRCLE:$(PROGS)/develop/examples/circle/trunk/circle.asm \
88
 demos/colorref:DEMOS/COLORREF:$(PROGS)/demos/colorref/trunk/colorref.asm \
89
 demos/cslide:DEMOS/CSLIDE:$(PROGS)/demos/cslide/trunk/cslide.asm \
90
 demos/eyes:DEMOS/EYES:$(PROGS)/demos/eyes/trunk/eyes.asm \
91
 demos/fire:DEMOS/FIRE:$(PROGS)/demos/fire/trunk/fire.asm \
92
 demos/firework:DEMOS/FIREWORK:$(PROGS)/demos/firework/trunk/firework.asm \
93
 demos/movback:DEMOS/MOVBACK:$(PROGS)/demos/movback/trunk/movback.asm \
94
 demos/plasma:DEMOS/PLASMA:$(PROGS)/demos/plasma/trunk/plasma.asm \
95
 demos/timer:DEMOS/TIMER:$(PROGS)/demos/timer/trunk/timer.asm \
96
 demos/tinyfrac:DEMOS/TINYFRAC:$(PROGS)/demos/tinyfrac/trunk/tinyfrac.asm \
97
 demos/trantest:DEMOS/TRANTEST:$(PROGS)/demos/trantest/trunk/trantest.asm \
98
 demos/tube:DEMOS/TUBE:$(PROGS)/demos/tube/trunk/tube.asm \
99
 demos/unvwater:DEMOS/UNVWATER:$(PROGS)/demos/unvwater/trunk/unvwater.asm \
100
 demos/web:DEMOS/WEB:$(PROGS)/demos/web/trunk/web.asm \
101
 develop/board:DEVELOP/BOARD:$(PROGS)/system/board/trunk/board.asm \
102
 develop/cObj:DEVELOP/cObj:$(PROGS)/develop/cObj/trunk/cObj.asm \
103
 develop/fasm:DEVELOP/FASM:$(PROGS)/develop/fasm/trunk/fasm.asm \
104
 develop/h2d2b:DEVELOP/H2D2B:$(PROGS)/develop/h2d2b/trunk/h2d2b.asm \
105
 develop/heed:DEVELOP/HEED:$(PROGS)/develop/heed/trunk/heed.asm \
106
 develop/ipc:DEVELOP/IPC:$(PROGS)/network/ipc/trunk/ipc.asm \
107
 develop/keyascii:DEVELOP/KEYASCII:$(PROGS)/develop/keyascii/trunk/keyascii.asm \
108
 develop/mtdbg:DEVELOP/MTDBG:$(PROGS)/develop/mtdbg/mtdbg.asm \
109
 develop/scancode:DEVELOP/SCANCODE:$(PROGS)/develop/scancode/trunk/scancode.asm \
110
 develop/test_gets:DEVELOP/test_gets:$(PROGS)/develop/libraries/console/examples/test_gets.asm \
111
 develop/testcon2:DEVELOP/TESTCON2:$(PROGS)/develop/libraries/console/examples/testcon2.asm \
112
 develop/thread:DEVELOP/THREAD:$(PROGS)/develop/examples/thread/trunk/thread.asm \
113
 drivers/com_mouse.obj:DRIVERS/COM_MOUSE.OBJ:$(KERNEL)/drivers/com_mouse.asm \
114
 drivers/emu10k1x.obj:DRIVERS/EMU10K1X.OBJ:$(KERNEL)/drivers/emu10k1x.asm \
115
 drivers/fm801.obj:DRIVERS/FM801.OBJ:$(KERNEL)/drivers/fm801.asm \
116
 drivers/infinity.obj:DRIVERS/INFINITY.OBJ:$(KERNEL)/drivers/infinity.asm \
117
 drivers/ps2mouse.obj:DRIVERS/PS2MOUSE.OBJ:$(REPOSITORY)/drivers/mouse/ps2mouse4d/trunk/ps2mouse.asm \
118
 drivers/sb16.obj:DRIVERS/SB16.OBJ:$(KERNEL)/drivers/sb16/sb16.asm \
119
 drivers/vt8235.obj:DRIVERS/VT8235.OBJ:$(KERNEL)/drivers/vt823x.asm \
120
 File|Managers/kfar:File|Managers/KFAR:$(PROGS)/fs/kfar/trunk/kfar.asm \
121
 File|Managers/kfm:File|Managers/KFM:$(PROGS)/fs/kfm/trunk/kfm.asm \
1955 mario79 122
 File|Managers/opendial:File|Managers/OPENDIAL:$(PROGS)/fs/opendial/opendial.asm \
1944 yogev_ezra 123
 fonts/bgitest:FONTS/BGITEST:$(PROGS)/demos/bgitest/trunk/bgitest.asm \
124
 games/15:GAMES/15:$(PROGS)/games/15/trunk/15.ASM \
125
 games/arcanii:GAMES/ARCANII:$(PROGS)/games/arcanii/trunk/arcanii.asm \
2070 dunkaist 126
 games/freecell:GAMES/FREECELL:$(PROGS)/games/freecell/freecell.asm \
1944 yogev_ezra 127
 games/gomoku:GAMES/GOMOKU:$(PROGS)/games/gomoku/trunk/gomoku.asm \
128
 games/invaders:GAMES/INVADERS:$(PROGS)/games/invaders/invaders.asm \
129
 games/klavisha:GAMES/KLAVISHA:$(PROGS)/games/klavisha/trunk/klavisha.asm \
130
 games/kox:GAMES/KOX:$(PROGS)/games/kox/trunk/kox.asm \
131
 games/lights:GAMES/LIGHTS:$(PROGS)/games/lights/trunk/lights.asm \
132
 games/lines:GAMES/LINES:$(PROGS)/games/lines/lines.asm \
133
 games/mblocks:GAMES/MBLOCKS:$(PROGS)/games/mblocks/trunk/mblocks.asm \
134
 games/msquare:GAMES/MSQUARE:$(PROGS)/games/MSquare/trunk/MSquare.asm \
135
 games/phenix:GAMES/PHENIX:$(PROGS)/games/phenix/trunk/phenix.asm \
136
 games/pipes:GAMES/PIPES:$(PROGS)/games/pipes/pipes.asm \
137
 games/pong:GAMES/PONG:$(PROGS)/games/pong/trunk/pong.asm \
138
 games/pong3:GAMES/PONG3:$(PROGS)/games/pong3/trunk/pong3.asm \
139
 games/rsquare:GAMES/RSQUARE:$(PROGS)/games/rsquare/trunk/rsquare.asm \
140
 games/soko:GAMES/SOKO:$(PROGS)/games/soko/trunk/SOKO.ASM \
141
 games/snake:GAMES/SNAKE:$(PROGS)/games/snake/trunk/snake.asm \
142
 games/sq_game:GAMES/SQ_GAME:$(PROGS)/games/sq_game/trunk/SQ_GAME.ASM \
143
 games/sudoku:GAMES/SUDOKU:$(PROGS)/games/sudoku/trunk/sudoku.asm \
144
 games/sw:GAMES/SW:$(PROGS)/games/sw/trunk/sw.asm \
145
 games/tanks:GAMES/TANKS:$(PROGS)/games/tanks/trunk/tanks.asm \
146
 games/tetris:GAMES/TETRIS:$(PROGS)/games/tetris/trunk/tetris.asm \
147
 lib/archiver.obj:LIB/ARCHIVER.OBJ:$(PROGS)/fs/kfar/trunk/kfar_arc/kfar_arc.asm \
148
 lib/box_lib.obj:LIB/BOX_LIB.OBJ:$(PROGS)/develop/libraries/box_lib/trunk/box_lib.asm \
149
 lib/console.obj:LIB/CONSOLE.OBJ:$(PROGS)/develop/libraries/console/console.asm \
150
 lib/libgfx.obj:LIB/LIBGFX.OBJ:$(PROGS)/develop/libraries/libs-dev/libgfx/libgfx.asm \
151
 lib/libimg.obj:LIB/LIBIMG.OBJ:$(PROGS)/develop/libraries/libs-dev/libimg/libimg.asm \
152
 lib/libini.obj:LIB/LIBINI.OBJ:$(PROGS)/develop/libraries/libs-dev/libini/libini.asm \
153
 lib/libio.obj:LIB/LIBIO.OBJ:$(PROGS)/develop/libraries/libs-dev/libio/libio.asm \
154
 lib/network.obj:LIB/NETWORK.OBJ:$(PROGS)/develop/libraries/network/network.asm \
155
 lib/proc_lib.obj:LIB/PROC_LIB.OBJ:$(PROGS)/develop/libraries/proc_lib/trunk/proc_lib.asm \
1955 mario79 156
 lib/cnv_png.obj:LIB/CNV_PNG.OBJ:$(PROGS)/media/zsea/plugins/png/cnv_png.asm \
1944 yogev_ezra 157
 media/animage:MEDIA/ANIMAGE:$(PROGS)/media/animage/trunk/animage.asm \
158
 media/cdp:MEDIA/CDP:$(PROGS)/media/cdp/trunk/cdp.asm \
159
 media/kiv:MEDIA/KIV:$(PROGS)/media/kiv/trunk/kiv.asm \
160
 media/listplay:MEDIA/LISTPLAY:$(PROGS)/media/listplay/trunk/listplay.asm \
161
 media/midamp:MEDIA/MIDAMP:$(PROGS)/media/midamp/trunk/midamp.asm \
162
 media/startmus:MEDIA/STARTMUS:$(PROGS)/media/startmus/trunk/STARTMUS.ASM \
163
 network/airc:NETWORK/AIRC:$(PROGS)/network/airc/trunk/airc.asm \
164
 network/arpstat:NETWORK/ARPSTAT:$(PROGS)/network/arpstat/trunk/arpstat.asm \
165
 network/chess:NETWORK/CHESS:$(PROGS)/network/chess/trunk/chess.asm \
2109 leency 166
 network/downloader:NETWORK/DOWNLOADER:$(PROGS)/network/downloader/trunk/downloader.asm \
1944 yogev_ezra 167
 network/ethstat:NETWORK/ETHSTAT:$(PROGS)/network/ethstat/trunk/ethstat.asm \
168
 network/ftps:NETWORK/FTPS:$(PROGS)/network/ftps/trunk/FTPS.ASM \
169
 network/https:NETWORK/HTTPS:$(PROGS)/network/https/trunk/https.asm \
170
 network/nntpc:NETWORK/NNTPC:$(PROGS)/network/nntpc/trunk/nntpc.asm \
171
 network/nslookup:NETWORK/NSLOOKUP:$(PROGS)/develop/libraries/network/examples/nslookup.asm \
172
 network/popc:NETWORK/POPC:$(PROGS)/network/popc/trunk/popc.asm \
173
 network/smtps:NETWORK/SMTPS:$(PROGS)/network/smtps/trunk/smtps.asm \
174
 network/stackcfg:NETWORK/STACKCFG:$(PROGS)/network/stackcfg/trunk/stackcfg.asm \
175
 network/telnet:NETWORK/TELNET:$(PROGS)/network/telnet/trunk/telnet.asm \
176
 network/tftpc:NETWORK/TFTPC:$(PROGS)/network/tftpc/trunk/tftpc.asm \
177
 network/VNCclient:NETWORK/VNCclient:$(PROGS)/network/VNCclient/VNCclient.asm \
178
 network/ym:NETWORK/YM:$(PROGS)/network/ym/trunk/ym.asm \
179
 network/zeroconf:NETWORK/ZEROCONF:$(PROGS)/network/zeroconf/trunk/zeroconf.asm \
180
# end of list
181
 
182
# The list of all NASM programs with one main NASM file.
183
# Format of an item is exactly the same as in the previous list.
184
NASM_PROGRAMS:=\
185
 demos/aclock:DEMOS/ACLOCK:$(PROGS)/demos/aclock/trunk/aclock.asm \
186
 games/c4:GAMES/C4:$(PROGS)/games/c4/trunk/c4.asm \
187
# end of list
188
 
189
# The list of files which should be copied from somewhere.
190
# Format of an item is exactly the same as in the previous list.
191
COPY_FILES:=\
192
 macros.inc:MACROS.INC:$(PROGS)/macros.inc \
193
 config.inc:CONFIG.INC:$(PROGS)/config.inc \
194
 struct.inc:STRUCT.INC:$(PROGS)/struct.inc \
1955 mario79 195
 File|Managers/z_icons.png:File|Managers/Z_ICONS.PNG:$(PROGS)/fs/opendial/z_icons.png \
1944 yogev_ezra 196
 File|Managers/kfm_keys.txt:File|Managers/KFM_KEYS.TXT:$(PROGS)/fs/kfm/trunk/docs/english/kfm_keys.txt \
197
 File|Managers/buttons.bmp:File|Managers/BUTTONS.BMP:$(PROGS)/fs/kfm/trunk/buttons.bmp \
198
 File|Managers/icons.bmp:File|Managers/ICONS.BMP:$(PROGS)/fs/kfm/trunk/icons.bmp \
199
 fonts/euro.chr:FONTS/EURO.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/EURO.CHR \
200
 fonts/goth.chr:FONTS/GOTH.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/GOTH.CHR \
201
 fonts/lcom.chr:FONTS/LCOM.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/LCOM.CHR \
202
 fonts/litt.chr:FONTS/LITT.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/LITT.CHR \
203
 fonts/sans.chr:FONTS/SANS.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/SANS.CHR \
204
 fonts/scri.chr:FONTS/SCRI.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/SCRI.CHR \
205
 fonts/simp.chr:FONTS/SIMP.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/SIMP.CHR \
206
 fonts/smal.chr:FONTS/SMAL.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/SMAL.CHR \
207
 fonts/trip.chr:FONTS/TRIP.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/TRIP.CHR \
208
 fonts/tscr.chr:FONTS/TSCR.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/TSCR.CHR \
209
 games/snake.ini:GAMES/SNAKE.INI:$(PROGS)/games/snake/trunk/snake.ini \
210
 games/skin.raw:GAMES/SKIN.RAW:$(PROGS)/games/soko/trunk/SKIN.RAW \
211
 games/soko-4.lev:GAMES/SOKO-4.LEV:$(PROGS)/games/soko/trunk/SOKO-4.LEV \
212
 games/soko-5.lev:GAMES/SOKO-5.LEV:$(PROGS)/games/soko/trunk/SOKO-5.LEV \
213
 games/soko-6.lev:GAMES/SOKO-6.LEV:$(PROGS)/games/soko/trunk/SOKO-6.LEV \
214
 games/soko-7.lev:GAMES/SOKO-7.LEV:$(PROGS)/games/soko/trunk/SOKO-7.LEV \
215
 games/soko-8.lev:GAMES/SOKO-8.LEV:$(PROGS)/games/soko/trunk/SOKO-8.LEV \
216
 games/soko-9.lev:GAMES/SOKO-9.LEV:$(PROGS)/games/soko/trunk/SOKO-9.LEV \
217
 media/kiv.ini:MEDIA/KIV.INI:$(PROGS)/media/kiv/trunk/kiv.ini \
218
 .shell:.shell:$(PROGS)/system/shell/bin/eng/.shell \
219
 mykey.ini:MYKEY.INI:$(PROGS)/system/MyKey/trunk/mykey.ini \
220
# end of list
221
 
222
# The list of all C-- programs with one main C-- file.
223
# Format of an item is exactly the same as in the previous list,
224
# except that there can be fourth field with parameters for a compiler.
225
CMM_PROGRAMS:=\
2035 mario79 226
 File|Managers/eolite:File|Managers/EOLITE:$(PROGS)/fs/Eolite/trunk/Eolite.c-- \
1944 yogev_ezra 227
 games/clicks:GAMES/CLICKS:$(PROGS)/games/clicks/trunk/clicks.c-- \
228
 games/FindNumbers:GAMES/FindNumbers:$(PROGS)/games/FindNumbers/trunk/FindNumbers.c-- \
2277 leency 229
 games/flood-it:GAMES/flood-it:$(PROGS)/games/flood-it/trunk/flood-it.c \
1944 yogev_ezra 230
 games/mine:GAMES/MINE:$(PROGS)/games/mine/trunk/mine.c--:/MEOS \
1972 yogev_ezra 231
 HTMLv:HTMLv:$(PROGS)/network/htmlv/browser/HTMLv.c-- \
1944 yogev_ezra 232
#develop/c--:DEVELOP/C--:$(PROGS)/develop/c--/trunk/32.c-- \
233
# end of list
234
 
235
# List of other files to be included in the image file.
236
# Some of them are auto-built with special rules, some just exist before build.
237
# Each item is of the form :.
238
# Spaces should be represented as |.
2087 dunkaist 239
OTHER_FILES:=autorun.dat:AUTORUN.DAT \
1944 yogev_ezra 240
 background.gif:background.gif default.skn:DEFAULT.SKN \
1972 yogev_ezra 241
 e80:E80 graph:GRAPH hdread:HDREAD \
1944 yogev_ezra 242
 icons.dat:ICONS.DAT iconstrp.gif:ICONSTRP.GIF index_htm:INDEX.HTM \
243
 kernel.mnt:KERNEL.MNT kerpack:KERPACK keymap.key:KEYMAP.KEY \
244
 kuzkina.mid:KUZKINA.MID lang.inc:LANG.INC lang.ini:LANG.INI \
245
 menu.dat:MENU.DAT \
246
 panel.dat:PANEL.DAT setup.dat:SETUP.DAT \
247
 shell:SHELL table:TABLE \
248
 vmode:VMODE 3d/3dsheart:3D/3DSHEART \
249
 3d/cubeline:3D/CUBELINE 3d/gears:3D/GEARS 3d/house.3ds:3D/HOUSE.3DS \
250
 demos/use_mb:DEMOS/USE_MB \
251
 drivers/sound.obj:DRIVERS/SOUND.OBJ \
252
 File|Managers/eolite.ini:File|Managers/EOLITE.INI \
253
 File|Managers/icons.ini:File|Managers/ICONS.INI \
254
 File|Managers/kfar.ini:File|Managers/KFAR.INI \
255
 File|Managers/kfm.ini:File|Managers/KFM.INI \
256
 fonts/bold.chr:FONTS/BOLD.CHR fonts/char2.mt:FONTS/CHAR2.MT \
257
 fonts/char.mt:FONTS/CHAR.MT \
258
 games/kosilka:GAMES/KOSILKA games/kosskin.gfx:GAMES/KOSSKIN.GFX \
259
 games/reversi:GAMES/REVERSI games/rforces:GAMES/RFORCES \
260
 games/xonix:GAMES/XONIX games/megamaze:GAMES/MEGAMAZE \
1955 mario79 261
 lib/msgbox.obj:LIB/MSGBOX.OBJ \
1944 yogev_ezra 262
 lib/pixlib.obj:LIB/PIXLIB.OBJ lib/sort.obj:LIB/SORT.OBJ \
263
 media/ac97snd:MEDIA/AC97SND \
264
 network/jmail:NETWORK/JMAIL network/zeroconf.ini:NETWORK/ZEROCONF.INI \
265
#end of list
266
#3d/logio.bmp:3D/LOGIO.BMP 3d/cubetext:3D/CUBETEXT
267
 
268
# Extra targets for LiveCD image in the syntax of mkisofs
269
MKISOFS_EXTRA:=\
270
 dosbox/=$(PROGS)/emulator/DosBox/dosbox \
271
 dosbox/=$(PROGS)/emulator/DosBox/dosbox.conf \
272
 dosbox/=$(PROGS)/emulator/DosBox/readme.txt \
273
#end of list
274
 
275
# Some macro for convenient work.
276
# Macros for replacing '|' to escaped space '\ '.
277
space:=\ #plus space
278
respace=$(subst |,$(space),$(1))
279
# Macro for selecting different parts of ':'-separated items.
280
binarypart=$(word 1,$(subst :, ,$(1)))
281
imagepart=$(word 2,$(subst :, ,$(1)))
282
sourcepart=$(word 3,$(subst :, ,$(1)))
283
parampart=$(word 4,$(subst :, ,$(1)))
284
# Get file names, possibly with spaces inside, from an item.
285
# Here $(f) is an item - in fact, macro argument.
286
fbinary=$(call respace,$(call binarypart,$(f)))
287
fimage=$(call respace,$(call imagepart,$(f)))
288
fsource=$(call respace,$(call sourcepart,$(f)))
289
fparam=$(call respace,$(call parampart,$(f)))
290
 
291
# Define targets for image file.
292
# Join all the lists above.
293
targets_full:=$(COPY_FILES) $(FASM_PROGRAMS) $(NASM_PROGRAMS) $(OTHER_FILES) $(CMM_PROGRAMS)
294
# For each item in the united list call fbinary.
295
targets:=$(foreach f,$(targets_full),$(fbinary))
296
 
297
# Define a command for copying a file inside the image.
298
# mcopy_command is a macro with two parameters,
299
# local file name $(1) and image file name $(2).
300
# Note that spaces in these have to be escaped with backslashes.
301
mcopy_command=mcopy -moi $(BUILD_DIR)/kolibri.img $(1) ::$(2)
302
# Specialize a previous command for an item $(f) in one of lists.
303
mcopy_item_command=$(call mcopy_command,$(fbinary),$(fimage))
304
 
305
# Join all $(mcopy_item_command) for all items,
306
# append newline after each item.
307
# The first newline character after "define" line and
308
# the last newline character before "endef" line get away
309
# with define/endef, so we make three newline characters,
310
# that is two empty lines, in order to get one in $(newline).
311
define newline
312
 
313
 
314
endef
315
mcopy_all_items:=$(foreach f,$(targets_full),$(mcopy_item_command)$(newline))
316
 
317
# dependencies of MKISOFS_EXTRA; we iterate through $(MKISOFS_EXTRA),
318
# substitute "=" with space, get the 2nd word and join all results
319
mkisofs_extra_targets:=$(foreach f,$(MKISOFS_EXTRA),$(word 2,$(subst =, ,$(f))))
320
 
321
# The main goal: build kolibri.img and kolibri.iso
322
all: $(BUILD_DIR)/kolibri.img $(BUILD_DIR)/kolibri.iso
323
 
324
# The first goal: floppy image.
325
$(BUILD_DIR)/kolibri.img: $(BUILD_DIR)/.dir \
326
 Makefile \
327
 $(BUILD_DIR)/boot_fat12.bin \
328
 $(targets)
329
# SYSXTREE
330
# 3d/CUBETEXT
331
# 3d/LOGIO.BMP
332
	str=`date -u +"[auto-build %d %b %Y %R, r$(REV)]"`; \
333
	echo -n $$str|dd of=kernel.mnt bs=1 seek=`expr 279 - length "$$str"` conv=notrunc 2>/dev/null
334
	dd if=/dev/zero of=$(BUILD_DIR)/kolibri.img count=2880 bs=512 2>&1
335
	mformat -f 1440 -i $(BUILD_DIR)/kolibri.img ::
336
	dd if=$(BUILD_DIR)/boot_fat12.bin of=$(BUILD_DIR)/kolibri.img count=1 bs=512 conv=notrunc 2>&1
337
	mmd -i $(BUILD_DIR)/kolibri.img ::3D
338
	mmd -i $(BUILD_DIR)/kolibri.img ::DEMOS
339
	mmd -i $(BUILD_DIR)/kolibri.img ::DEVELOP
340
	mmd -i $(BUILD_DIR)/kolibri.img ::DRIVERS
341
	mmd -i $(BUILD_DIR)/kolibri.img ::File\ Managers
342
	mmd -i $(BUILD_DIR)/kolibri.img ::FONTS
343
	mmd -i $(BUILD_DIR)/kolibri.img ::GAMES
344
	mmd -i $(BUILD_DIR)/kolibri.img ::LIB
345
	mmd -i $(BUILD_DIR)/kolibri.img ::MEDIA
346
	mmd -i $(BUILD_DIR)/kolibri.img ::NETWORK
347
	$(mcopy_all_items)
348
 
349
# The second goal: LiveCD image.
350
$(BUILD_DIR)/kolibri.iso: $(BUILD_DIR)/kolibri.img $(mkisofs_extra_targets)
351
	mkisofs -U -J -pad -b kolibri.img -c boot.catalog -hide-joliet boot.catalog -hide-joliet kolibri.img -graft-points \
352
	-A "KolibriOS AutoBuilder" -p "CleverMouse" -publisher "KolibriOS Team" -V "KolibriOS r$(REV)" -sysid "KOLIBRI" \
353
	-iso-level 3 -o $(BUILD_DIR)/kolibri.iso $(BUILD_DIR)/kolibri.img $(MKISOFS_EXTRA) 2>&1
354
 
355
# Special targets to modify behaviour of make.
356
.DELETE_ON_ERROR:
357
.SUFFIXES: # delete all predefined rules
358
 
359
# The floppy bootsector.
360
$(BUILD_DIR)/boot_fat12.bin: $(KERNEL)/bootloader/boot_fat12.asm $(KERNEL)/bootloader/floppy1440.inc
361
	fasm $(KERNEL)/bootloader/boot_fat12.asm $(BUILD_DIR)/boot_fat12.bin
362
 
363
$(BUILD_DIR)/.dir 3d/.dir demos/.dir develop/.dir drivers/.dir fonts/.dir \
364
 games/.dir lib/.dir media/.dir network/.dir .deps/.dir:
365
	mkdir -p $(dir $@)
366
	touch $@
367
File\ Managers/.dir:
368
	mkdir -p "File Managers"
369
	touch "File Managers/.dir"
370
 
371
# FASM black magic goes to Makefile.fasm.
372
include Makefile.fasm
373
 
374
# Similar for NASM.
375
include Makefile.nasm
376
 
377
# Similar for copying files.
378
include Makefile.copy
379
 
380
# Special rules for copying sysfuncs.txt - it isn't directly included in the image.
381
docpak: $(DOCDIR)SYSFUNCS.TXT $(wildcard $(DOCDIR)*)
382
$(DOCDIR)SYSFUNCS.TXT: $(KERNEL)/docs/sysfuncs.txt
383
	cp $(KERNEL)/docs/sysfuncs.txt $(DOCDIR)SYSFUNCS.TXT
384
 
385
# Similar for C--.
386
include Makefile.cmm
387
 
388
# Sorry, even black magic seems to be insufficient for
389
# auto-handling all subtle effects. So we just define
390
# command lines for compiling and linking, and
391
# maintain the list of sources and objects by hand.
392
include Makefile.msvc
393
 
394
# Rules for table
395
table: .obj.table/table.exe
396
	$(msvc_final)
397
TABLE_OBJECTS:=.obj.table/calc.obj .obj.table/func.obj .obj.table/hello.obj \
398
 .obj.table/KosFile.obj .obj.table/kosSyst.obj .obj.table/math2.obj \
399
 .obj.table/mcsmemm.obj .obj.table/parser.obj
400
TABLE_H_FILES:=$(wildcard $(PROGS)/other/table/*.h)
401
.obj.table/table.exe: $(TABLE_OBJECTS)
402
	$(msvc_link)
403
$(TABLE_OBJECTS): .obj.table/%.obj: $(PROGS)/other/table/%.cpp $(TABLE_H_FILES) Makefile.msvc | .obj.table
404
	$(msvc_compile)
405
.obj.table:
406
	mkdir -p .obj.table
407
 
408
# Rules for graph
409
graph: .obj.graph/graph.exe
410
	$(msvc_final)
411
GRAPH_CPP_OBJECTS:=.obj.graph/func.obj .obj.graph/hello.obj .obj.graph/kolibri.obj \
412
 .obj.graph/KosFile.obj .obj.graph/kosSyst.obj .obj.graph/math2.obj \
413
 .obj.graph/mcsmemm.obj .obj.graph/parser.obj
414
GRAPH_C_OBJECTS:=.obj.graph/string.obj
415
GRAPH_H_FILES:=$(wildcard $(PROGS)/other/graph/*.h)
416
GRAPH_FASM_OBJECTS:=.obj.graph/memcpy.obj .obj.graph/memset.obj
417
.obj.graph/graph.exe: $(GRAPH_CPP_OBJECTS) $(GRAPH_C_OBJECTS) $(GRAPH_FASM_OBJECTS)
418
	$(msvc_link)
419
$(GRAPH_CPP_OBJECTS): .obj.graph/%.obj: $(PROGS)/other/graph/%.cpp $(GRAPH_H_FILES) Makefile.msvc | .obj.graph
420
	$(msvc_compile)
421
$(GRAPH_C_OBJECTS): .obj.graph/%.obj: $(PROGS)/other/graph/%.c $(GRAPH_H_FILES) Makefile.msvc | .obj.graph
422
	$(msvc_compile)
423
$(GRAPH_FASM_OBJECTS): .obj.graph/%.obj: $(PROGS)/other/graph/%.asm Makefile.msvc | .obj.graph
424
	fasm $< $@
425
.obj.graph:
426
	mkdir -p .obj.graph
427
 
428
# Rules for kosilka
429
games/kosilka: .obj.kosilka/kosilka.exe
430
	$(msvc_final)
431
KOSILKA_OBJECTS:=.obj.kosilka/kosilka.obj .obj.kosilka/KosFile.obj .obj.kosilka/kosSyst.obj .obj.kosilka/mcsmemm.obj
432
KOSILKA_H_FILES:=$(PROGS)/games/kosilka/*.h
433
.obj.kosilka/kosilka.exe: $(KOSILKA_OBJECTS)
434
	$(msvc_link)
435
$(KOSILKA_OBJECTS): .obj.kosilka/%.obj: $(PROGS)/games/kosilka/%.cpp $(KOSILKA_H_FILES) Makefile.msvc | .obj.kosilka
436
	$(msvc_compile)
437
.obj.kosilka:
438
	mkdir -p .obj.kosilka
439
 
440
include Makefile.gcc
441
 
442
# Rules for shell
2181 mario79 443
shell: .obj.shell/start.o .obj.shell/shell.o .obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o \
1944 yogev_ezra 444
 $(PROGS)/system/shell/kolibri.ld
445
	$(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
446
.obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
447
 $(PROGS)/system/shell/all.h \
448
 $(PROGS)/system/shell/system/*.h \
449
 $(PROGS)/system/shell/cmd/*.c \
450
 $(PROGS)/system/shell/modules/*.c \
451
 $(PROGS)/system/shell/locale/rus/globals.h \
452
 Makefile.gcc | .obj.shell
453
	$(gcc_compile)
2181 mario79 454
.obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o: .obj.shell/%.o: \
1944 yogev_ezra 455
 $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
456
 Makefile.gcc | .obj.shell
457
	$(gcc_compile)
458
	win32-gcc -c -Os -o $@ $<
459
.obj.shell/start.o: $(PROGS)/system/shell/start.asm | .obj.shell
460
	fasm $< $@
461
.obj.shell:
462
	mkdir -p .obj.shell
463
 
464
# Rules for e80
465
E80DIR=$(PROGS)/emulator/e80/trunk
466
e80: .obj.e80/start.o .obj.e80/kolibri.o .obj.e80/stdlib.o .obj.e80/string.o .obj.e80/z80.o .obj.e80/e80.o
467
	$(call gcc_link,$(E80DIR)/kolibri.ld)
468
.obj.e80/e80.o: $(E80DIR)/e80.c $(E80DIR)/48.h \
469
 $(E80DIR)/system/*.h $(E80DIR)/system/msgbox.c \
470
 $(E80DIR)/z80/z80.h Makefile.gcc | .obj.e80
471
	$(gcc_compile)
472
.obj.e80/kolibri.o .obj.e80/stdlib.o .obj.e80/string.o: .obj.e80/%.o: \
473
 $(E80DIR)/system/%.c $(E80DIR)/system/*.h Makefile.gcc | .obj.e80
474
	$(gcc_compile)
475
.obj.e80/z80.o: $(E80DIR)/z80/z80.c $(E80DIR)/z80/*
476
	$(gcc_compile)
477
.obj.e80/start.o: $(E80DIR)/asm_code.asm | .obj.e80
478
	fasm $< $@
479
.obj.e80:
480
	mkdir -p .obj.e80
481
 
482
# Rules for sdk/sound, used by media/ac97snd
483
SOUNDDIR=$(PROGS)/develop/sdk/trunk/sound/src
484
SOUND_OBJECTS:=$(patsubst $(SOUNDDIR)/%.asm,.sdk/%.obj,$(wildcard $(SOUNDDIR)/*.asm))
485
SOUND_INC_FILES:=$(wildcard $(SOUNDDIR)/*.inc)
486
.sdk/sound.lib: $(SOUND_OBJECTS)
487
	win32-link /lib /out:$@ $^
488
$(SOUND_OBJECTS): .sdk/%.obj: $(SOUNDDIR)/%.asm $(SOUND_INC_FILES) | .sdk
489
	fasm $< $@
490
.sdk:
491
	mkdir -p .sdk
492
# Rules for media/ac97snd
493
AC97DIR=$(PROGS)/media/ac97snd
494
media/ac97snd: .obj.ac97snd/ac97snd.exe
495
	$(msvc_final)
496
.obj.ac97snd/ac97snd.exe: .obj.ac97snd/ac97wav.obj .obj.ac97snd/crt.obj .obj.ac97snd/k_lib.obj \
497
	.obj.ac97snd/mpg.lib .sdk/sound.lib $(AC97DIR)/ufmod.obj
498
	$(msvc_link)
499
.obj.ac97snd/ac97wav.obj: $(AC97DIR)/ac97snd/ac97wav.c \
500
	$(AC97DIR)/kolibri.h $(AC97DIR)/ac97snd/ac97wav.h $(AC97DIR)/mpg/mpg123.h \
501
	$(AC97DIR)/sound.h $(AC97DIR)/ufmod-codec.h Makefile.msvc | .obj.ac97snd
502
	$(msvc_compile)
503
.obj.ac97snd/crt.obj: $(AC97DIR)/ac97snd/crt.c $(AC97DIR)/ac97snd/crt.h Makefile.msvc | .obj.ac97snd
504
	$(msvc_compile)
505
.obj.ac97snd/k_lib.obj: $(AC97DIR)/ac97snd/k_lib.asm $(AC97DIR)/ac97snd/proc32.inc | .obj.ac97snd
506
	fasm $< $@
507
AC97SND_MPG_C_FILES:=$(wildcard $(AC97DIR)/mpg/*.c)
508
AC97SND_MPG_H_FILES:=$(wildcard $(AC97DIR)/mpg/*.h)
509
AC97SND_MPG_C_OBJECTS:=$(patsubst $(AC97DIR)/mpg/%.c,.obj.ac97snd/%.o,$(AC97SND_MPG_C_FILES))
510
.obj.ac97snd/mpg.lib: $(AC97SND_MPG_C_OBJECTS) .obj.ac97snd/pow.obj
511
	win32-link /lib /ltcg /out:$@ $^
512
$(AC97SND_MPG_C_OBJECTS): .obj.ac97snd/%.o: $(AC97DIR)/mpg/%.c $(AC97SND_MPG_H_FILES) Makefile.msvc | .obj.ac97snd
513
	$(msvc_compile)
514
.obj.ac97snd/pow.obj: $(AC97DIR)/mpg/pow.asm $(AC97DIR)/mpg/proc32.inc | .obj.ac97snd
515
	fasm $< $@
516
.obj.ac97snd:
517
	mkdir -p .obj.ac97snd