Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
2817 IgorA 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
# The main goal: build kolibri.img and kolibri.iso
13
all: $(BUILD_DIR)/kolibri.img $(BUILD_DIR)/kolibri.iso
14
 
15
# Docpak requires some documents; we place them
16
# into 'docs' subdir and communicate with FASM
17
# through environment var DOCDIR.
18
DOCDIR:=docs/
19
export DOCDIR
20
 
21
# Because most programs are written in FASM and have
22
# the common structure of one main .asm file possibly including
23
# several .inc files, we handle this case separately.
24
# Namely, we organize one big list of such programs
25
# (FASM_PROGRAMS, see below) containing name of local binary file,
26
# name of file inside kolibri.img and name of the source file.
27
# This list is maintained by hand, and the rest is done with some macroses...
28
# well, slightly complicated macroses - however, you do not need to
29
# understand them in order to maintain the list.
30
# To add a FASM program with one .asm file, just
31
# add the corresponding item to the list and enjoy
32
# the power of GNU make.
33
 
34
# The list of all FASM programs with one main FASM file.
35
# Every item consists of three parts, separated by ':'.
36
# First part is the real name of binary file in $(BUILD_DIR)
37
# as it should be produced by make.
38
# Second part is the name of a file inside kolibri.img,
39
# usually uppercased version of first part - to save space
40
# for FAT filesystem.
41
# Third part is the name of the source file.
42
# Spaces separate items, so spaces in names should be
43
# represented as '|'.
44
FASM_PROGRAMS:=\
45
 @clip:@CLIP:$(PROGS)/system/clip/trunk/@clip.ASM \
46
 @menu:@MENU:$(PROGS)/system/menu/trunk/menu.asm \
47
 @panel:@PANEL:$(PROGS)/system/panel/trunk/@PANEL.ASM \
48
 @ss:@SS:$(PROGS)/system/ss/trunk/@ss.asm\
49
 refrscrn:REFRSCRN:$(PROGS)/system/refrscrn/refrscrn.asm \
50
 asciivju:ASCIIVJU:$(PROGS)/develop/asciivju/trunk/asciivju.asm \
51
 calc:CALC:$(PROGS)/other/calc/trunk/calc.asm \
52
 calendar:CALENDAR:$(PROGS)/system/calendar/trunk/calendar.asm \
3419 mario79 53
 colrdial:COLRDIAL:$(PROGS)/system/colrdial/color_dialog.asm \
2817 IgorA 54
 commouse:COMMOUSE:$(PROGS)/system/commouse/trunk/commouse.asm \
55
 cpu:CPU:$(PROGS)/system/cpu/trunk/cpu.asm \
56
 cpuid:CPUID:$(PROGS)/system/cpuid/trunk/CPUID.ASM \
57
 desktop:DESKTOP:$(PROGS)/system/desktop/trunk/desktop.asm \
58
 disptest:DISPTEST:$(PROGS)/system/disptest/trunk/disptest.ASM \
59
 docpack:DOCPACK:$(PROGS)/system/docpack/trunk/docpack.asm \
60
 end:END:$(PROGS)/system/end/light/end.asm \
61
 gmon:GMON:$(PROGS)/system/gmon/gmon.asm \
62
 hdd_info:HDD_INFO:$(PROGS)/system/hdd_info/trunk/hdd_info.asm \
63
 icon:ICON:$(PROGS)/system/icon/trunk/icon.asm \
64
 cropflat:CROPFLAT:$(PROGS)/system/cropflat/cropflat.asm \
65
 kbd:KBD:$(PROGS)/system/kbd/trunk/kbd.ASM \
66
 kpack:KPACK:$(PROGS)/other/kpack/trunk/kpack.asm \
67
 launcher:LAUNCHER:$(PROGS)/system/launcher/trunk/launcher.asm \
68
 magnify:MAGNIFY:$(PROGS)/demos/magnify/trunk/magnify.asm \
69
 mgb:MGB:$(PROGS)/system/mgb/trunk/mgb.asm \
70
 mousemul:MOUSEMUL:$(PROGS)/system/mousemul/trunk/mousemul.asm \
71
 madmouse:MADMOUSE:$(PROGS)/other/madmouse/madmouse.asm \
72
 mykey:MYKEY:$(PROGS)/system/MyKey/trunk/MyKey.asm \
73
 pcidev:PCIDEV:$(PROGS)/system/pcidev/trunk/PCIDEV.ASM \
74
 rdsave:RDSAVE:$(PROGS)/system/rdsave/trunk/rdsave.asm \
75
 rtfread:RTFREAD:$(PROGS)/other/rtfread/trunk/rtfread.asm \
76
 run:RUN:$(PROGS)/system/run/trunk/run.asm \
77
 scrshoot:SCRSHOOT:$(PROGS)/media/scrshoot/scrshoot.asm \
78
 setup:SETUP:$(PROGS)/system/setup/trunk/setup.asm \
79
 test:TEST:$(PROGS)/system/test/trunk/test.asm \
80
 tinypad:TINYPAD:$(PROGS)/develop/tinypad/trunk/tinypad.asm \
81
 zkey:ZKEY:$(PROGS)/system/zkey/trunk/ZKEY.ASM \
82
 3d/3dsheart:3D/3DSHEART:$(PROGS)/demos/3dsheart/trunk/3dsheart.asm \
83
 3d/3dwav:3D/3DWAV:$(PROGS)/demos/3dwav/trunk/3dwav.asm \
84
 3d/crownscr:3D/CROWNSCR:$(PROGS)/demos/crownscr/trunk/crownscr.asm  \
85
 3d/free3d04:3D/FREE3D04:$(PROGS)/demos/free3d04/trunk/free3d04.asm \
86
 3d/view3ds:3D/VIEW3DS:$(PROGS)/demos/3DS/VIEW3DS.ASM \
87
 demos/bcdclk:DEMOS/BCDCLK:$(PROGS)/demos/bcdclk/trunk/bcdclk.asm \
88
 demos/circle:DEMOS/CIRCLE:$(PROGS)/develop/examples/circle/trunk/circle.asm \
89
 demos/colorref:DEMOS/COLORREF:$(PROGS)/demos/colorref/trunk/colorref.asm \
90
 demos/cslide:DEMOS/CSLIDE:$(PROGS)/demos/cslide/trunk/cslide.asm \
91
 demos/eyes:DEMOS/EYES:$(PROGS)/demos/eyes/trunk/eyes.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/keyascii:DEVELOP/KEYASCII:$(PROGS)/develop/keyascii/trunk/keyascii.asm \
107
 develop/mtdbg:DEVELOP/MTDBG:$(PROGS)/develop/mtdbg/mtdbg.asm \
108
 develop/scancode:DEVELOP/SCANCODE:$(PROGS)/develop/scancode/trunk/scancode.asm \
109
 develop/t_edit:DEVELOP/T_EDIT:$(PROGS)/other/t_edit/t_edit.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
 develop/info/asm.syn:DEVELOP/INFO/ASM.SYN:$(PROGS)/other/t_edit/info/asm_syn.asm \
114
 develop/info/cpp_kol_cla.syn:DEVELOP/INFO/CPP_KOL_CLA.SYN:$(PROGS)/other/t_edit/info/cpp_kol_cla_syn.asm \
115
 develop/info/cpp_kol_dar.syn:DEVELOP/INFO/CPP_KOL_DAR.SYN:$(PROGS)/other/t_edit/info/cpp_kol_dar_syn.asm \
116
 develop/info/cpp_kol_def.syn:DEVELOP/INFO/CPP_KOL_DEF.SYN:$(PROGS)/other/t_edit/info/cpp_kol_def_syn.asm \
117
 develop/info/default.syn:DEVELOP/INFO/DEFAULT.SYN:$(PROGS)/other/t_edit/info/default_syn.asm \
118
 develop/info/html.syn:DEVELOP/INFO/HTML.SYN:$(PROGS)/other/t_edit/info/html_syn.asm \
119
 develop/info/ini_files.syn:DEVELOP/INFO/INI_FILES.SYN:$(PROGS)/other/t_edit/info/ini_files_syn.asm \
120
 develop/info/win_const.syn:DEVELOP/INFO/WIN_CONST.SYN:$(PROGS)/other/t_edit/info/win_const_syn.asm \
121
 drivers/com_mouse.obj:DRIVERS/COM_MOUSE.OBJ:$(KERNEL)/drivers/com_mouse.asm \
122
 drivers/emu10k1x.obj:DRIVERS/EMU10K1X.OBJ:$(KERNEL)/drivers/emu10k1x.asm \
123
 drivers/fm801.obj:DRIVERS/FM801.OBJ:$(KERNEL)/drivers/fm801.asm \
124
 drivers/infinity.obj:DRIVERS/INFINITY.OBJ:$(KERNEL)/drivers/infinity.asm \
3086 leency 125
 drivers/intel_hda.obj:DRIVERS/intel_hda.obj:$(REPOSITORY)/drivers/audio/intel_hda/intel_hda.asm \
2817 IgorA 126
 drivers/ps2mouse.obj:DRIVERS/PS2MOUSE.OBJ:$(REPOSITORY)/drivers/mouse/ps2mouse4d/trunk/ps2mouse.asm \
127
 drivers/sb16.obj:DRIVERS/SB16.OBJ:$(KERNEL)/drivers/sb16/sb16.asm \
128
 drivers/sound.obj:DRIVERS/SOUND.OBJ:$(KERNEL)/drivers/sound.asm \
3171 hidnplayr 129
 drivers/intelac97.obj:DRIVERS/INTELAC97.OBJ:$(KERNEL)/drivers/intelac97.asm \
2834 leency 130
 drivers/tmpdisk.obj:DRIVERS/TMPDISK.OBJ:$(KERNEL)/drivers/tmpdisk.asm \
3521 clevermous 131
 drivers/usbhid.obj:DRIVERS/USBHID.OBJ:$(KERNEL)/drivers/usbhid.asm \
132
 drivers/usbstor.obj:DRIVERS/USBSTOR.OBJ:$(KERNEL)/drivers/usbstor.asm \
3173 hidnplayr 133
 drivers/vt823x.obj:DRIVERS/VT823X.OBJ:$(KERNEL)/drivers/vt823x.asm \
3508 clevermous 134
 drivers/vidintel.obj:DRIVERS/VIDINTEL.OBJ:$(KERNEL)/drivers/vidintel.asm \
3553 hidnplayr 135
 drivers/3c59x.obj:DRIVERS/3C59X.obj:$(REPOSITORY)/drivers/ethernet/3c59x.asm \
136
 drivers/dec21x4x.obj:DRIVERS/DEC21X4X.obj:$(REPOSITORY)/drivers/ethernet/dec21x4x.asm \
137
 drivers/forcedeth.obj:DRIVERS/FORCEDETH.obj:$(REPOSITORY)/drivers/ethernet/forcedeth.asm \
138
 drivers/i8254x.obj:DRIVERS/I8254X.obj:$(REPOSITORY)/drivers/ethernet/i8254x.asm \
139
 drivers/i8255x.obj:DRIVERS/I8255X.obj:$(REPOSITORY)/drivers/ethernet/i8255x.asm \
140
 drivers/mtd80x.obj:DRIVERS/MTD80X.obj:$(REPOSITORY)/drivers/ethernet/mtd80x.asm \
141
 drivers/pcnet32.obj:DRIVERS/PCNET32.obj:$(REPOSITORY)/drivers/ethernet/pcnet32.asm \
142
 drivers/r6040.obj:DRIVERS/R6040.obj:$(REPOSITORY)/drivers/ethernet/R6040.asm \
143
 drivers/rhine.obj:DRIVERS/RHINE.obj:$(REPOSITORY)/drivers/ethernet/rhine.asm \
144
 drivers/rtl8029.obj:DRIVERS/RTL8029.obj:$(REPOSITORY)/drivers/ethernet/RTL8029.asm \
145
 drivers/rtl8139.obj:DRIVERS/RTL8139.obj:$(REPOSITORY)/drivers/ethernet/RTL8139.asm \
146
 drivers/rtl8169.obj:DRIVERS/RTL8169.obj:$(REPOSITORY)/drivers/ethernet/RTL8169.asm \
147
 drivers/sis900.obj:DRIVERS/SIS900.obj:$(REPOSITORY)/drivers/ethernet/sis900.asm \
2817 IgorA 148
 File|Managers/kfar:File|Managers/KFAR:$(PROGS)/fs/kfar/trunk/kfar.asm \
149
 File|Managers/kfm:File|Managers/KFM:$(PROGS)/fs/kfm/trunk/kfm.asm \
150
 File|Managers/opendial:File|Managers/OPENDIAL:$(PROGS)/fs/opendial/opendial.asm \
151
 games/15:GAMES/15:$(PROGS)/games/15/trunk/15.ASM \
152
 games/arcanii:GAMES/ARCANII:$(PROGS)/games/arcanii/trunk/arcanii.asm \
153
 games/freecell:GAMES/FREECELL:$(PROGS)/games/freecell/freecell.asm \
154
 games/gomoku:GAMES/GOMOKU:$(PROGS)/games/gomoku/trunk/gomoku.asm \
155
 games/invaders:GAMES/INVADERS:$(PROGS)/games/invaders/invaders.asm \
156
 games/klavisha:GAMES/KLAVISHA:$(PROGS)/games/klavisha/trunk/klavisha.asm \
157
 games/lines:GAMES/LINES:$(PROGS)/games/lines/lines.asm \
158
 games/mblocks:GAMES/MBLOCKS:$(PROGS)/games/mblocks/trunk/mblocks.asm \
159
 games/msquare:GAMES/MSQUARE:$(PROGS)/games/MSquare/trunk/MSquare.asm \
160
 games/phenix:GAMES/PHENIX:$(PROGS)/games/phenix/trunk/phenix.asm \
161
 games/pipes:GAMES/PIPES:$(PROGS)/games/pipes/pipes.asm \
162
 games/pong:GAMES/PONG:$(PROGS)/games/pong/trunk/pong.asm \
163
 games/pong3:GAMES/PONG3:$(PROGS)/games/pong3/trunk/pong3.asm \
164
 games/rsquare:GAMES/RSQUARE:$(PROGS)/games/rsquare/trunk/rsquare.asm \
165
 games/soko:GAMES/SOKO:$(PROGS)/games/soko/trunk/SOKO.ASM \
166
 games/snake:GAMES/SNAKE:$(PROGS)/games/snake/trunk/snake.asm \
167
 games/sq_game:GAMES/SQ_GAME:$(PROGS)/games/sq_game/trunk/SQ_GAME.ASM \
168
 games/sudoku:GAMES/SUDOKU:$(PROGS)/games/sudoku/trunk/sudoku.asm \
169
 games/sw:GAMES/SW:$(PROGS)/games/sw/trunk/sw.asm \
170
 games/tanks:GAMES/TANKS:$(PROGS)/games/tanks/trunk/tanks.asm \
171
 games/tetris:GAMES/TETRIS:$(PROGS)/games/tetris/trunk/tetris.asm \
172
 lib/archiver.obj:LIB/ARCHIVER.OBJ:$(PROGS)/fs/kfar/trunk/kfar_arc/kfar_arc.asm \
173
 lib/box_lib.obj:LIB/BOX_LIB.OBJ:$(PROGS)/develop/libraries/box_lib/trunk/box_lib.asm \
3104 leency 174
 lib/buf2d.obj:LIB/BUF2D.OBJ:$(PROGS)/develop/libraries/buf2d/trunk/buf2d.asm \
2817 IgorA 175
 lib/console.obj:LIB/CONSOLE.OBJ:$(PROGS)/develop/libraries/console/console.asm \
176
 lib/libgfx.obj:LIB/LIBGFX.OBJ:$(PROGS)/develop/libraries/libs-dev/libgfx/libgfx.asm \
177
 lib/libimg.obj:LIB/LIBIMG.OBJ:$(PROGS)/develop/libraries/libs-dev/libimg/libimg.asm \
178
 lib/libini.obj:LIB/LIBINI.OBJ:$(PROGS)/develop/libraries/libs-dev/libini/libini.asm \
179
 lib/libio.obj:LIB/LIBIO.OBJ:$(PROGS)/develop/libraries/libs-dev/libio/libio.asm \
180
 lib/network.obj:LIB/NETWORK.OBJ:$(PROGS)/develop/libraries/network/network.asm \
181
 lib/proc_lib.obj:LIB/PROC_LIB.OBJ:$(PROGS)/develop/libraries/proc_lib/trunk/proc_lib.asm \
182
 lib/cnv_png.obj:LIB/CNV_PNG.OBJ:$(PROGS)/media/zsea/plugins/png/cnv_png.asm \
183
 media/animage:MEDIA/ANIMAGE:$(PROGS)/media/animage/trunk/animage.asm \
184
 media/cdp:MEDIA/CDP:$(PROGS)/media/cdp/trunk/cdp.asm \
185
 media/kiv:MEDIA/KIV:$(PROGS)/media/kiv/trunk/kiv.asm \
186
 media/listplay:MEDIA/LISTPLAY:$(PROGS)/media/listplay/trunk/listplay.asm \
187
 media/midamp:MEDIA/MIDAMP:$(PROGS)/media/midamp/trunk/midamp.asm \
3087 leency 188
 media/palitra:MEDIA/PALITRA:$(PROGS)/media/palitra/trunk/palitra.asm \
2817 IgorA 189
 media/startmus:MEDIA/STARTMUS:$(PROGS)/media/startmus/trunk/STARTMUS.ASM \
3553 hidnplayr 190
 network/arpcfg:NETWORK/ARPCFG:$(PROGS)/network/arpcfg/arpcfg.asm \
191
 network/ping:NETWORK/PING:$(PROGS)/network/icmp/ping.asm \
192
 network/netcfg:NETWORK/NETCFG:$(PROGS)/network/netcfg/netcfg.asm \
193
 network/netstat:NETWORK/NETSTAT:$(PROGS)/network/netstat/netstat.asm \
194
 network/nslookup:NETWORK/NSLOOKUP:$(PROGS)/network/nslookup/nslookup.asm \
195
 network/synergyc:NETWORK/SYNERGYC:$(PROGS)/network/synergyc/synergyc.asm \
196
 network/tcpserv:NETWORK/TCPSERV:$(PROGS)/network/tcpserv/tcpserv.asm \
197
 network/telnet:NETWORK/TELNET:$(PROGS)/network/telnet/telnet.asm \
198
 network/zeroconf:NETWORK/ZEROCONF:$(PROGS)/network/zeroconf/zeroconf.asm \
199
 network/ftpd:NETWORK/FTPD:$(PROGS)/network/ftpd/ftpd.asm \
200
 network/tftpc:NETWORK/TFTPC:$(PROGS)/network/tftpc/tftpc.asm \
201
 network/ircc:NETWORK/IRCC:$(PROGS)/network/ircc/ircc.asm \
2817 IgorA 202
# end of list
203
# The list of all FASM programs with one main FASM file for CD image.
204
# Format of an item is exactly the same as in the previous list.
205
FASM_PROGRAMS_CD:=\
206
 drivers/atikms:DRIVERS/ATIKMS:$(REPOSITORY)/drivers/video/drm/radeon/atikms.asm \
207
# end of list
208
 
209
# The list of all FASM programs which needs to be compiled without KPACKing.
210
FASM_NOKPACK_PROGRAMS:=\
211
 distr_data/9x2klbr.exe:-:$(PROGS)/hd_load/9x2klbr/9x2klbr.asm \
212
 distr_data/MeOSload.com:-:$(PROGS)/hd_load/meosload/MeOSload.asm \
213
 distr_data/mtldr:-:$(PROGS)/hd_load/mtldr/mtldr.asm \
214
 mtldr_for_installer:-:$(PROGS)/hd_load/mtldr_install/mtldr_code/mtldr.asm \
215
 distr_data/mtldr_install.exe:-:$(PROGS)/hd_load/mtldr_install/mtldr_install.asm \
216
 distr_data/MeOSload_for_usb_boot_old.com:-:$(PROGS)/hd_load/usb_boot_old/MeOSload.asm \
217
 distr_data/enable_for_usb_boot_old.exe:-:$(PROGS)/hd_load/usb_boot_old/enable.asm \
218
 distr_data/BOOT_F32.BIN:-:$(PROGS)/hd_load/usb_boot/BOOT_F32.ASM \
219
 distr_data/MTLD_F32:-:$(PROGS)/hd_load/usb_boot/mtldr.asm \
220
 distr_data/inst.exe:-:$(PROGS)/hd_load/usb_boot/inst.asm \
221
 distr_data/setmbr.exe:-:$(PROGS)/hd_load/usb_boot/setmbr.asm \
222
#end of list
223
 
224
# The list of all NASM programs with one main NASM file.
225
# Format of an item is exactly the same as in the previous list.
226
NASM_PROGRAMS:=\
227
 demos/aclock:DEMOS/ACLOCK:$(PROGS)/demos/aclock/trunk/aclock.asm \
228
 games/c4:GAMES/C4:$(PROGS)/games/c4/trunk/c4.asm \
229
# end of list
230
 
231
# The list of files which should be copied from somewhere.
232
# Format of an item is exactly the same as in the previous list.
233
COPY_FILES:=\
234
 macros.inc:MACROS.INC:$(PROGS)/macros.inc \
235
 config.inc:CONFIG.INC:$(PROGS)/config.inc \
236
 struct.inc:STRUCT.INC:$(PROGS)/struct.inc \
237
 develop/te_icon.png:DEVELOP/TE_ICON.PNG:$(PROGS)/other/t_edit/te_icon.png \
238
 develop/tl_nod_16.png:DEVELOP/TL_NOD_16.PNG:$(PROGS)/other/t_edit/tl_nod_16.png \
239
 develop/tl_sys_16.png:DEVELOP/TL_SYS_16.PNG:$(PROGS)/media/log_el/trunk/tl_sys_16.png \
240
 develop/t_edit.ini:DEVELOP/T_EDIT.INI:$(PROGS)/other/t_edit/t_edit.ini \
241
 File|Managers/z_icons.png:File|Managers/Z_ICONS.PNG:$(PROGS)/fs/opendial/z_icons.png \
242
 File|Managers/kfm_keys.txt:File|Managers/KFM_KEYS.TXT:$(PROGS)/fs/kfm/trunk/docs/english/kfm_keys.txt \
243
 File|Managers/buttons.bmp:File|Managers/BUTTONS.BMP:$(PROGS)/fs/kfm/trunk/buttons.bmp \
244
 File|Managers/icons.bmp:File|Managers/ICONS.BMP:$(PROGS)/fs/kfm/trunk/icons.bmp \
245
 fonts/litt.chr:FONTS/LITT.CHR:$(PROGS)/demos/bgitest/trunk/FONTS/LITT.CHR \
246
 games/snake.ini:GAMES/SNAKE.INI:$(PROGS)/games/snake/trunk/snake.ini \
247
 games/skin.raw:GAMES/SKIN.RAW:$(PROGS)/games/soko/trunk/SKIN.RAW \
248
 games/soko-4.lev:GAMES/SOKO-4.LEV:$(PROGS)/games/soko/trunk/SOKO-4.LEV \
249
 games/soko-5.lev:GAMES/SOKO-5.LEV:$(PROGS)/games/soko/trunk/SOKO-5.LEV \
250
 games/soko-6.lev:GAMES/SOKO-6.LEV:$(PROGS)/games/soko/trunk/SOKO-6.LEV \
251
 games/soko-7.lev:GAMES/SOKO-7.LEV:$(PROGS)/games/soko/trunk/SOKO-7.LEV \
252
 games/soko-8.lev:GAMES/SOKO-8.LEV:$(PROGS)/games/soko/trunk/SOKO-8.LEV \
253
 games/soko-9.lev:GAMES/SOKO-9.LEV:$(PROGS)/games/soko/trunk/SOKO-9.LEV \
254
 media/kiv.ini:MEDIA/KIV.INI:$(PROGS)/media/kiv/trunk/kiv.ini \
255
 .shell:.shell:$(PROGS)/system/shell/bin/eng/.shell \
256
 mykey.ini:MYKEY.INI:$(PROGS)/system/MyKey/trunk/mykey.ini \
257
# end of list
258
 
259
# The list of all C-- programs with one main C-- file.
260
# Format of an item is exactly the same as in the previous list,
261
# except that there can be fourth field with parameters for a compiler.
262
CMM_PROGRAMS:=\
3364 leency 263
 File|Managers/eolite:File|Managers/EOLITE:$(PROGS)/cmm/eolite/Eolite.c \
2817 IgorA 264
 games/clicks:GAMES/CLICKS:$(PROGS)/games/clicks/trunk/clicks.c \
265
 games/FindNumbers:GAMES/FindNumbers:$(PROGS)/games/FindNumbers/trunk/FindNumbers.c-- \
266
 games/flood-it:GAMES/flood-it:$(PROGS)/games/flood-it/trunk/flood-it.c \
267
 games/mine:GAMES/MINE:$(PROGS)/games/mine/trunk/mine.c--:/MEOS \
3073 leency 268
 HTMLv:HTMLv:$(PROGS)/cmm/browser/HTMLv.c \
3108 leency 269
 tmpdisk:tmpdisk:$(PROGS)/cmm/tmpdisk/tmpdisk.c \
3074 leency 270
 @notify:@notify:$(PROGS)/cmm/notify/notify.c \
271
 @rb:@rb:$(PROGS)/cmm/rb/rb.c \
2817 IgorA 272
#develop/c--:DEVELOP/C--:$(PROGS)/develop/c--/trunk/32.c-- \
273
# end of list
274
 
275
# List of other files to be included in the image file.
276
# Some of them are auto-built with special rules, some just exist before build.
277
# Each item is of the form :.
278
# Spaces should be represented as |.
279
OTHER_FILES:=autorun.dat:AUTORUN.DAT \
3102 Akyltist 280
 default.skn:DEFAULT.SKN \
3094 Albom 281
 graph:GRAPH hdread:HDREAD \
2817 IgorA 282
 icons.dat:ICONS.DAT iconstrp.png:ICONSTRP.PNG index_htm:INDEX.HTM \
283
 kernel.mnt:KERNEL.MNT kerpack:KERPACK keymap.key:KEYMAP.KEY \
284
 kuzkina.mid:KUZKINA.MID lang.inc:LANG.INC lang.ini:LANG.INI \
285
 menu.dat:MENU.DAT \
286
 panel.ini:PANEL.INI setup.dat:SETUP.DAT \
287
 shell:SHELL table:TABLE \
288
 vmode:VMODE 3d/3dsheart:3D/3DSHEART \
289
 3d/cubeline:3D/CUBELINE 3d/gears:3D/GEARS 3d/house.3ds:3D/HOUSE.3DS \
290
 demos/ak47.lif:DEMOS/AK47.LIF \
291
 demos/relay.lif:DEMOS/RELAY.LIF demos/rpento.lif:DEMOS/RPENTO.LIF \
292
 demos/use_mb:DEMOS/USE_MB \
293
 File|Managers/eolite.ini:File|Managers/EOLITE.INI \
294
 File|Managers/icons.ini:File|Managers/ICONS.INI \
295
 File|Managers/kfar.ini:File|Managers/KFAR.INI \
296
 File|Managers/kfm.ini:File|Managers/KFM.INI \
297
 games/checkers:GAMES/CHECKERS \
298
 games/reversi:GAMES/REVERSI games/rforces:GAMES/RFORCES \
299
 games/xonix:GAMES/XONIX games/megamaze:GAMES/MEGAMAZE \
3136 leency 300
 games/kosilka:GAMES/KOSILKA \
2817 IgorA 301
 lib/msgbox.obj:LIB/MSGBOX.OBJ \
302
 lib/pixlib.obj:LIB/PIXLIB.OBJ lib/sort.obj:LIB/SORT.OBJ \
303
 media/ac97snd:MEDIA/AC97SND \
3224 leency 304
 media/ImgF/ImgF:MEDIA/ImgF/ImgF \
305
 media/ImgF/cEdg.obj:MEDIA/ImgF/cEdg.obj \
306
 media/ImgF/dither.obj:MEDIA/ImgF/dither.obj \
307
 media/ImgF/invSol.obj:MEDIA/ImgF/invSol.obj \
3553 hidnplayr 308
 network.ini:NETWORK.INI \
2817 IgorA 309
#end of list
310
 
311
# Generate skins list understandable by gnu make
312
Makefile.skins: $(REPOSITORY)/skins/authors.txt $(REPOSITORY)/data/generate_makefile_skins.sh
313
	cut -f1 $< | $(SHELL) $(REPOSITORY)/data/generate_makefile_skins.sh > $@
314
include Makefile.skins
315
 
316
# Extra targets for LiveCD image in the syntax of mkisofs
317
MKISOFS_EXTRA:=\
3095 Albom 318
 emu/e80/e80=e80 \
3094 Albom 319
 emu/dosbox/=$(PROGS)/emulator/DosBox/dosbox \
320
 emu/dosbox/=$(PROGS)/emulator/DosBox/dosbox.conf \
321
 emu/dosbox/=$(PROGS)/emulator/DosBox/readme.txt \
2817 IgorA 322
 /=distr_data/autorun.inf \
323
 /=distr_data/KolibriOS_icon.ico \
324
 /=distr_data/readme.txt \
325
 Skins/=$(REPOSITORY)/skins/authors.txt \
326
 Docs/config.txt=docs/CONFIG.TXT \
327
 Docs/copying.txt=docs/COPYING.TXT \
328
 Docs/hot_keys.txt=docs/HOT_KEYS.TXT \
329
 Docs/install.txt=docs/INSTALL.TXT \
330
 Docs/readme.txt=docs/README.TXT \
331
 Docs/stack.txt=docs/STACK.TXT \
332
 Docs/sysfuncs.txt=docs/SYSFUNCS.TXT \
333
 HD_Load/9x2klbr/=distr_data/9x2klbr.exe \
334
 HD_Load/9x2klbr/=../common/HD_load/9x2klbr/LDKLBR.VXD \
335
 HD_Load/9x2klbr/=$(PROGS)/hd_load/9x2klbr/readme.txt \
336
 HD_Load/MeOSLoad/=distr_data/MeOSload.com \
337
 HD_Load/MeOSLoad/=$(PROGS)/hd_load/meosload/AUTOEXEC.BAT \
338
 HD_Load/MeOSLoad/=$(PROGS)/hd_load/meosload/CONFIG.SYS \
339
 HD_Load/MeOSLoad/=$(PROGS)/hd_load/meosload/L_readme.txt \
340
 HD_Load/MeOSLoad/=$(PROGS)/hd_load/meosload/L_readme_Win.txt \
341
 HD_Load/mtldr/=distr_data/mtldr \
342
 HD_Load/mtldr/install.txt=$(PROGS)/hd_load/mtldr/install_eng.txt \
343
 HD_Load/mtldr/=$(PROGS)/hd_load/mtldr/vista_install.bat \
344
 HD_Load/mtldr/=$(PROGS)/hd_load/mtldr/vista_remove.bat \
345
 HD_Load/=distr_data/mtldr_install.exe \
346
 HD_Load/memdisk=../common/HD_load/memdisk \
347
 HD_Load/USB_Boot/=distr_data/BOOT_F32.BIN \
348
 HD_Load/USB_Boot/=distr_data/MTLD_F32 \
349
 HD_Load/USB_Boot/=distr_data/inst.exe \
350
 HD_Load/USB_Boot/=distr_data/setmbr.exe \
351
 HD_Load/USB_Boot/readme.txt=$(PROGS)/hd_load/usb_boot/readme_eng.txt \
352
 HD_Load/USB_boot_old/=$(PROGS)/hd_load/usb_boot_old/usb_boot.rtf \
353
 HD_Load/USB_boot_old/=$(PROGS)/hd_load/usb_boot_old/usb_boot_866.txt \
354
 HD_Load/USB_boot_old/=$(PROGS)/hd_load/usb_boot_old/usb_boot_1251.txt \
355
 HD_Load/USB_boot_old/MeOSload.com=distr_data/MeOSload_for_usb_boot_old.com \
356
 HD_Load/USB_boot_old/enable.exe=distr_data/enable_for_usb_boot_old.exe \
357
 games/=../common/games \
358
 games/fara=games/fara \
359
 games/soko/soko=games/soko \
360
#end of list
361
 
362
# Some macro for convenient work.
363
# Macros for replacing '|' to escaped space '\ '.
364
space:=\ #plus space
365
respace=$(subst |,$(space),$(1))
366
# Macro for selecting different parts of ':'-separated items.
367
binarypart=$(word 1,$(subst :, ,$(1)))
368
imagepart=$(word 2,$(subst :, ,$(1)))
369
sourcepart=$(word 3,$(subst :, ,$(1)))
370
parampart=$(word 4,$(subst :, ,$(1)))
371
# Get file names, possibly with spaces inside, from an item.
372
# Here $(f) is an item - in fact, macro argument.
373
fbinary=$(call respace,$(call binarypart,$(f)))
374
fimage=$(call respace,$(call imagepart,$(f)))
375
fsource=$(call respace,$(call sourcepart,$(f)))
376
fparam=$(call respace,$(call parampart,$(f)))
377
 
378
# Define targets for image file.
379
# Join all the lists above.
380
targets_full:=$(COPY_FILES) $(FASM_PROGRAMS) $(NASM_PROGRAMS) $(OTHER_FILES) $(CMM_PROGRAMS)
381
# For each item in the united list call fbinary.
382
targets:=$(foreach f,$(targets_full),$(fbinary))
383
 
384
# Define a command for copying a file inside the image.
385
# mcopy_command is a macro with two parameters,
386
# local file name $(1) and image file name $(2).
387
# Note that spaces in these have to be escaped with backslashes.
388
mcopy_command=mcopy -moi $(BUILD_DIR)/kolibri.img $(1) ::$(2)
389
# Specialize a previous command for an item $(f) in one of lists.
390
mcopy_item_command=$(call mcopy_command,$(fbinary),$(fimage))
391
 
392
# Join all $(mcopy_item_command) for all items,
393
# append newline after each item.
394
# The first newline character after "define" line and
395
# the last newline character before "endef" line get away
396
# with define/endef, so we make three newline characters,
397
# that is two empty lines, in order to get one in $(newline).
398
define newline
399
 
400
 
401
endef
402
mcopy_all_items:=$(foreach f,$(targets_full),$(mcopy_item_command)$(newline))
403
 
404
# add skins to MKISOFS_EXTRA
405
MKISOFS_EXTRA:=$(MKISOFS_EXTRA) $(foreach f,$(SKIN_SOURCES),$(call imagepart,$(f))=$(call binarypart,$(f)))
406
# dependencies of MKISOFS_EXTRA; we iterate through $(MKISOFS_EXTRA),
407
# substitute "=" with space, get the 2nd word and join all results
408
mkisofs_extra_targets:=$(call respace,$(foreach f,$(MKISOFS_EXTRA),$(word 2,$(subst =, ,$(f)))))
409
 
410
# The first goal: floppy image.
411
$(BUILD_DIR)/kolibri.img: $(BUILD_DIR)/.dir \
412
 Makefile \
413
 $(BUILD_DIR)/boot_fat12.bin \
414
 $(targets)
415
	str=`date -u +"[auto-build %d %b %Y %R, r$(REV)]"`; \
416
	echo -n $$str|dd of=kernel.mnt bs=1 seek=`expr 279 - length "$$str"` conv=notrunc 2>/dev/null
417
	dd if=/dev/zero of=$(BUILD_DIR)/kolibri.img count=2880 bs=512 2>&1
418
	mformat -f 1440 -i $(BUILD_DIR)/kolibri.img ::
419
	dd if=$(BUILD_DIR)/boot_fat12.bin of=$(BUILD_DIR)/kolibri.img count=1 bs=512 conv=notrunc 2>&1
420
	mmd -i $(BUILD_DIR)/kolibri.img ::3D
421
	mmd -i $(BUILD_DIR)/kolibri.img ::DEMOS
422
	mmd -i $(BUILD_DIR)/kolibri.img ::DEVELOP
423
	mmd -i $(BUILD_DIR)/kolibri.img ::DEVELOP/INFO
424
	mmd -i $(BUILD_DIR)/kolibri.img ::DRIVERS
425
	mmd -i $(BUILD_DIR)/kolibri.img ::File\ Managers
426
	mmd -i $(BUILD_DIR)/kolibri.img ::FONTS
427
	mmd -i $(BUILD_DIR)/kolibri.img ::GAMES
428
	mmd -i $(BUILD_DIR)/kolibri.img ::LIB
429
	mmd -i $(BUILD_DIR)/kolibri.img ::MEDIA
3224 leency 430
	mmd -i $(BUILD_DIR)/kolibri.img ::MEDIA/ImgF
2817 IgorA 431
	mmd -i $(BUILD_DIR)/kolibri.img ::NETWORK
432
	$(mcopy_all_items)
433
 
434
# The second goal: LiveCD image.
435
$(BUILD_DIR)/kolibri.iso: $(BUILD_DIR)/kolibri.img $(mkisofs_extra_targets)
436
	mkisofs -U -J -pad -b kolibri.img -c boot.catalog -hide-joliet boot.catalog -graft-points \
437
	-A "KolibriOS AutoBuilder" -p "CleverMouse" -publisher "KolibriOS Team" -V "KolibriOS r$(REV)" -sysid "KOLIBRI" \
438
	-iso-level 3 -o $(BUILD_DIR)/kolibri.iso $(BUILD_DIR)/kolibri.img $(call respace,$(MKISOFS_EXTRA)) 2>&1
439
 
440
# Special targets to modify behaviour of make.
441
.DELETE_ON_ERROR:
442
.SUFFIXES: # delete all predefined rules
443
 
444
# The floppy bootsector.
445
$(BUILD_DIR)/boot_fat12.bin: $(KERNEL)/bootloader/boot_fat12.asm $(KERNEL)/bootloader/floppy1440.inc
446
	fasm $(KERNEL)/bootloader/boot_fat12.asm $(BUILD_DIR)/boot_fat12.bin
447
 
448
$(BUILD_DIR)/.dir 3d/.dir demos/.dir develop/.dir develop/info/.dir drivers/.dir fonts/.dir \
449
 games/.dir lib/.dir media/.dir network/.dir allskins/.dir distr_data/.dir .deps/.dir:
450
	mkdir -p $(dir $@)
451
	touch $@
452
develop/info/.dir: develop/.dir
453
File\ Managers/.dir:
454
	mkdir -p "File Managers"
455
	touch "File Managers/.dir"
456
 
457
# extra dependency for mtldr_install.exe
458
distr_data/mtldr_install.exe: mtldr_for_installer
459
 
460
# FASM black magic goes to Makefile.fasm.
461
include Makefile.fasm
462
 
463
# Similar for NASM.
464
include Makefile.nasm
465
 
466
# Similar for copying files.
467
include Makefile.copy
468
 
469
# Special rules for copying sysfuncs.txt - it isn't directly included in the image.
470
docpack: $(DOCDIR)SYSFUNCS.TXT
471
$(DOCDIR)SYSFUNCS.TXT: $(KERNEL)/docs/sysfuncs.txt
472
	cp $(KERNEL)/docs/sysfuncs.txt $(DOCDIR)SYSFUNCS.TXT
473
 
474
# Similar for C--.
475
include Makefile.cmm
476
 
477
# Sorry, even black magic seems to be insufficient for
478
# auto-handling all subtle effects. So we just define
479
# command lines for compiling and linking, and
480
# maintain the list of sources and objects by hand.
481
include Makefile.msvc
482
 
483
# Rules for table
484
table: .obj.table/table.exe
485
	$(msvc_final)
486
TABLE_OBJECTS:=.obj.table/calc.obj .obj.table/func.obj .obj.table/hello.obj \
487
 .obj.table/KosFile.obj .obj.table/kosSyst.obj .obj.table/math2.obj \
488
 .obj.table/mcsmemm.obj .obj.table/parser.obj
489
TABLE_H_FILES:=$(wildcard $(PROGS)/other/table/*.h)
490
.obj.table/table.exe: $(TABLE_OBJECTS)
491
	$(msvc_link)
492
$(TABLE_OBJECTS): .obj.table/%.obj: $(PROGS)/other/table/%.cpp $(TABLE_H_FILES) Makefile.msvc | .obj.table
493
	$(msvc_compile)
494
.obj.table:
495
	mkdir -p .obj.table
496
 
497
# Rules for graph
498
graph: .obj.graph/graph.exe
499
	$(msvc_final)
500
GRAPH_CPP_OBJECTS:=.obj.graph/func.obj .obj.graph/hello.obj .obj.graph/kolibri.obj \
501
 .obj.graph/KosFile.obj .obj.graph/kosSyst.obj .obj.graph/math2.obj \
502
 .obj.graph/mcsmemm.obj .obj.graph/parser.obj
503
GRAPH_C_OBJECTS:=.obj.graph/string.obj
504
GRAPH_H_FILES:=$(wildcard $(PROGS)/other/graph/*.h)
505
GRAPH_FASM_OBJECTS:=.obj.graph/memcpy.obj .obj.graph/memset.obj
506
.obj.graph/graph.exe: $(GRAPH_CPP_OBJECTS) $(GRAPH_C_OBJECTS) $(GRAPH_FASM_OBJECTS)
507
	$(msvc_link)
508
$(GRAPH_CPP_OBJECTS): .obj.graph/%.obj: $(PROGS)/other/graph/%.cpp $(GRAPH_H_FILES) Makefile.msvc | .obj.graph
509
	$(msvc_compile)
510
$(GRAPH_C_OBJECTS): .obj.graph/%.obj: $(PROGS)/other/graph/%.c $(GRAPH_H_FILES) Makefile.msvc | .obj.graph
511
	$(msvc_compile)
512
$(GRAPH_FASM_OBJECTS): .obj.graph/%.obj: $(PROGS)/other/graph/%.asm Makefile.msvc | .obj.graph
513
	fasm $< $@
514
.obj.graph:
515
	mkdir -p .obj.graph
516
 
517
# Rules for kosilka
518
games/kosilka: .obj.kosilka/kosilka.exe
519
	$(msvc_final)
520
KOSILKA_OBJECTS:=.obj.kosilka/kosilka.obj .obj.kosilka/KosFile.obj .obj.kosilka/kosSyst.obj .obj.kosilka/mcsmemm.obj
521
KOSILKA_H_FILES:=$(PROGS)/games/kosilka/*.h
522
.obj.kosilka/kosilka.exe: $(KOSILKA_OBJECTS)
523
	$(msvc_link)
524
$(KOSILKA_OBJECTS): .obj.kosilka/%.obj: $(PROGS)/games/kosilka/%.cpp $(KOSILKA_H_FILES) Makefile.msvc | .obj.kosilka
525
	$(msvc_compile)
526
.obj.kosilka:
527
	mkdir -p .obj.kosilka
528
 
529
include Makefile.gcc
530
 
531
# Rules for shell
532
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 \
533
 $(PROGS)/system/shell/kolibri.ld
534
	$(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
535
.obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
536
 $(PROGS)/system/shell/all.h \
537
 $(PROGS)/system/shell/system/*.h \
538
 $(PROGS)/system/shell/cmd/*.c \
539
 $(PROGS)/system/shell/modules/*.c \
540
 $(PROGS)/system/shell/locale/rus/globals.h \
541
 Makefile.gcc | .obj.shell
542
	$(gcc_compile)
543
.obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o: .obj.shell/%.o: \
544
 $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
545
 Makefile.gcc | .obj.shell
546
	$(gcc_compile)
547
	win32-gcc -c -Os -o $@ $<
548
.obj.shell/start.o: $(PROGS)/system/shell/start.asm | .obj.shell
549
	fasm $< $@
550
.obj.shell:
551
	mkdir -p .obj.shell
552
 
553
# Rules for e80
554
E80DIR=$(PROGS)/emulator/e80/trunk
555
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
556
	$(call gcc_link,$(E80DIR)/kolibri.ld)
557
.obj.e80/e80.o: $(E80DIR)/e80.c $(E80DIR)/48.h \
558
 $(E80DIR)/system/*.h $(E80DIR)/system/msgbox.c \
559
 $(E80DIR)/z80/z80.h Makefile.gcc | .obj.e80
560
	$(gcc_compile)
561
.obj.e80/kolibri.o .obj.e80/stdlib.o .obj.e80/string.o: .obj.e80/%.o: \
562
 $(E80DIR)/system/%.c $(E80DIR)/system/*.h Makefile.gcc | .obj.e80
563
	$(gcc_compile)
564
.obj.e80/z80.o: $(E80DIR)/z80/z80.c $(E80DIR)/z80/*
565
	$(gcc_compile)
566
.obj.e80/start.o: $(E80DIR)/asm_code.asm | .obj.e80
567
	fasm $< $@
568
.obj.e80:
569
	mkdir -p .obj.e80
570
 
571
# Rules for sdk/sound, used by media/ac97snd
572
SOUNDDIR=$(PROGS)/develop/sdk/trunk/sound/src
573
SOUND_OBJECTS:=$(patsubst $(SOUNDDIR)/%.asm,.sdk/%.obj,$(wildcard $(SOUNDDIR)/*.asm))
574
SOUND_INC_FILES:=$(wildcard $(SOUNDDIR)/*.inc)
575
.sdk/sound.lib: $(SOUND_OBJECTS)
576
	win32-link /lib /out:$@ $^
577
$(SOUND_OBJECTS): .sdk/%.obj: $(SOUNDDIR)/%.asm $(SOUND_INC_FILES) | .sdk
578
	fasm $< $@
579
.sdk:
580
	mkdir -p .sdk
581
# Rules for media/ac97snd
582
AC97DIR=$(PROGS)/media/ac97snd
583
media/ac97snd: .obj.ac97snd/ac97snd.exe
584
	$(msvc_final)
585
.obj.ac97snd/ac97snd.exe: .obj.ac97snd/ac97wav.obj .obj.ac97snd/crt.obj .obj.ac97snd/k_lib.obj \
586
	.obj.ac97snd/mpg.lib .sdk/sound.lib .obj.ac97snd/ufmod.obj
587
	$(msvc_link)
588
.obj.ac97snd/ac97wav.obj: $(AC97DIR)/ac97snd/ac97wav.c \
589
	$(AC97DIR)/kolibri.h $(AC97DIR)/ac97snd/ac97wav.h $(AC97DIR)/mpg/mpg123.h \
590
	$(AC97DIR)/sound.h $(AC97DIR)/ufmod-codec.h Makefile.msvc | .obj.ac97snd
591
	$(msvc_compile)
592
.obj.ac97snd/crt.obj: $(AC97DIR)/ac97snd/crt.c $(AC97DIR)/ac97snd/crt.h Makefile.msvc | .obj.ac97snd
593
	$(msvc_compile)
594
.obj.ac97snd/k_lib.obj: $(AC97DIR)/ac97snd/k_lib.asm $(AC97DIR)/ac97snd/proc32.inc | .obj.ac97snd
595
	fasm $< $@
596
.obj.ac97snd/ufmod.obj: $(AC97DIR)/ufmod-config.asm | .obj.ac97snd
597
	fasm $< $@ -s .deps/ac97snd-ufmod.fas
598
	prepsrc .deps/ac97snd-ufmod.fas /dev/stdout | \
599
	perl -n -e 's|\\|/|g;s| |\\ |g;push @a,$$1 if/^;include\\ \x27(.*?)\x27/;' \
600
	-e 'END{$$a=join " \\\n ",@a;print "$@: $$a\n$$a:\n"}' > .deps/ac97snd-ufmod.Po
601
-include .deps/ac97snd-ufmod.Po
602
AC97SND_MPG_C_FILES:=$(wildcard $(AC97DIR)/mpg/*.c)
603
AC97SND_MPG_H_FILES:=$(wildcard $(AC97DIR)/mpg/*.h)
604
AC97SND_MPG_C_OBJECTS:=$(patsubst $(AC97DIR)/mpg/%.c,.obj.ac97snd/%.o,$(AC97SND_MPG_C_FILES))
605
.obj.ac97snd/mpg.lib: $(AC97SND_MPG_C_OBJECTS) .obj.ac97snd/pow.obj
606
	win32-link /lib /ltcg /out:$@ $^
607
$(AC97SND_MPG_C_OBJECTS): .obj.ac97snd/%.o: $(AC97DIR)/mpg/%.c $(AC97SND_MPG_H_FILES) Makefile.msvc | .obj.ac97snd
608
	$(msvc_compile)
609
.obj.ac97snd/pow.obj: $(AC97DIR)/mpg/pow.asm $(AC97DIR)/mpg/proc32.inc | .obj.ac97snd
610
	fasm $< $@
611
.obj.ac97snd:
612
	mkdir -p .obj.ac97snd
613
 
614
# Rules for atikms.dll
615
# Use Makefile from $(REPOSITORY)/drivers/ddk and $(REPOSITORY)/drivers/video/drm/radeon
616
# However, dependencies must be duplicated - I don't know how to avoid this
617
# without need to rebuild kolibri.img at every iteration...
618
# Note that we are going to write in the directory shared
619
# between all Makefiles, so we need locked operations.
620
drivers/atikms.dll: $(REPOSITORY)/drivers/video/drm/radeon/atikms.dll drivers/.dir
621
	kpack --nologo $< $@
622
$(REPOSITORY)/drivers/video/drm/radeon/atikms.dll: $(REPOSITORY)/drivers/video/drm/radeon/Makefile.lto
623
	flock $(REPOSITORY)/drivers/video/drm/radeon/.lock \
624
	$(MAKE) CC=win32-gcc45 AS=win32-as LD=win32-ld AR=win32-ar FASM=fasm -C $(REPOSITORY)/drivers/video/drm/radeon -f Makefile.lto
625
$(REPOSITORY)/drivers/ddk/libddk.a: $(REPOSITORY)/drivers/ddk/Makefile
626
	flock $(REPOSITORY)/drivers/ddk/.lock \
627
	$(MAKE) CC=win32-gcc45 AS=win32-as LD=win32-ld AR=win32-ar FASM=fasm -C $(REPOSITORY)/drivers/ddk libddk.a
628
$(REPOSITORY)/drivers/ddk/libcore.a: $(REPOSITORY)/drivers/ddk/Makefile
629
	flock $(REPOSITORY)/drivers/ddk/.lock \
630
	$(MAKE) CC=win32-gcc45 AS=win32-as LD=win32-ld AR=win32-ar FASM=fasm -C $(REPOSITORY)/drivers/ddk libcore.a
631
# dependencies
632
$(REPOSITORY)/drivers/video/drm/radeon/atikms.dll: \
633
 $(REPOSITORY)/drivers/video/drm/radeon/atikms.lds \
634
 $(REPOSITORY)/drivers/ddk/libddk.a \
635
 $(REPOSITORY)/drivers/ddk/libcore.a \
636
 $(REPOSITORY)/drivers/video/drm/radeon/*.[Sch] \
637
 $(REPOSITORY)/drivers/video/drm/radeon/*.asm \
638
 $(REPOSITORY)/drivers/video/drm/radeon/Makefile \
639
 $(REPOSITORY)/drivers/video/drm/radeon/firmware/*.bin \
640
 $(REPOSITORY)/drivers/include/*.h \
641
 $(REPOSITORY)/drivers/include/*/*.h \
642
 $(REPOSITORY)/drivers/include/*/*/*.h \
643
 $(REPOSITORY)/drivers/include/*/*/*/*.h
644
$(REPOSITORY)/drivers/ddk/libddk.a: \
645
 $(REPOSITORY)/drivers/ddk/*/* \
646
 $(REPOSITORY)/drivers/include/*.h \
647
 $(REPOSITORY)/drivers/include/*/*.h \
648
 $(REPOSITORY)/drivers/include/*/*/*.h \
649
 $(REPOSITORY)/drivers/include/*/*/*/*.h
650
$(REPOSITORY)/drivers/ddk/libcore.a: \
651
 $(REPOSITORY)/drivers/ddk/core.S