Subversion Repositories Kolibri OS

Rev

Rev 2729 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  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/branches/net
  10. TRUNKKERNEL:=$(REPOSITORY)/kernel/trunk
  11. PROGS:=$(REPOSITORY)/programs
  12. NETPROGS:=$(REPOSITORY)/kernel/branches/net/applications
  13.  
  14. # Docpak requires some documents; we place them
  15. # into 'docs' subdir and communicate with FASM
  16. # through environment var DOCDIR.
  17. DOCDIR:=docs/
  18. export DOCDIR
  19.  
  20. # Because most programs are written in FASM and have
  21. # the common structure of one main .asm file possibly including
  22. # several .inc files, we handle this case separately.
  23. # Namely, we organize one big list of such programs
  24. # (FASM_PROGRAMS, see below) containing name of local binary file,
  25. # name of file inside kolibri.img and name of the source file.
  26. # This list is maintained by hand, and the rest is done with some macroses...
  27. # well, slightly complicated macroses - however, you do not need to
  28. # understand them in order to maintain the list.
  29. # To add a FASM program with one .asm file, just
  30. # add the corresponding item to the list and enjoy
  31. # the power of GNU make.
  32.  
  33. # The list of all FASM programs with one main FASM file.
  34. # Every item consists of three parts, separated by ':'.
  35. # First part is the real name of binary file in $(BUILD_DIR)
  36. # as it should be produced by make.
  37. # Second part is the name of a file inside kolibri.img,
  38. # usually uppercased version of first part - to save space
  39. # for FAT filesystem.
  40. # Third part is the name of the source file.
  41. # Spaces separate items, so spaces in names should be
  42. # represented as '|'.
  43. FASM_PROGRAMS:=\
  44.  @clip:@CLIP:$(PROGS)/system/clip/trunk/@clip.ASM \
  45.  @menu:@MENU:$(PROGS)/system/menu/trunk/menu.asm \
  46.  @notify:@NOTIFY:$(PROGS)/system/notify/trunk/@notify.asm \
  47.  @panel:@PANEL:$(PROGS)/system/panel/trunk/@PANEL.ASM \
  48.  @rb:@RB:$(PROGS)/system/rb/trunk/@RB.ASM \
  49.  @ss:@SS:$(PROGS)/system/ss/trunk/@ss.asm\
  50.  refrscrn:REFRSCRN:$(PROGS)/system/refrscrn/refrscrn.asm \
  51.  asciivju:ASCIIVJU:$(PROGS)/develop/asciivju/trunk/asciivju.asm \
  52.  calc:CALC:$(PROGS)/other/calc/trunk/calc.asm \
  53.  calendar:CALENDAR:$(PROGS)/system/calendar/trunk/calendar.asm \
  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.  docpak:DOCPAK:$(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.  kbd:KBD:$(PROGS)/system/kbd/trunk/kbd.ASM \
  65.  kpack:KPACK:$(PROGS)/other/kpack/trunk/kpack.asm \
  66.  launcher:LAUNCHER:$(PROGS)/system/launcher/trunk/launcher.asm \
  67.  magnify:MAGNIFY:$(PROGS)/demos/magnify/trunk/magnify.asm \
  68.  mgb:MGB:$(PROGS)/system/mgb/trunk/mgb.asm \
  69.  mousemul:MOUSEMUL:$(PROGS)/system/mousemul/trunk/mousemul.asm \
  70.  madmouse:MADMOUSE:$(PROGS)/other/madmouse/madmouse.asm \
  71.  mykey:MYKEY:$(PROGS)/system/MyKey/trunk/MyKey.asm \
  72.  pcidev:PCIDEV:$(PROGS)/system/pcidev/trunk/PCIDEV.ASM \
  73.  period:PERIOD:$(PROGS)/other/period/trunk/period.asm \
  74.  pic4:PIC4:$(PROGS)/media/pic4/trunk/pic4.asm \
  75.  rdsave:RDSAVE:$(PROGS)/system/rdsave/trunk/rdsave.asm \
  76.  rtfread:RTFREAD:$(PROGS)/other/rtfread/trunk/rtfread.asm \
  77.  run:RUN:$(PROGS)/system/run/trunk/run.asm \
  78.  scrshoot:SCRSHOOT:$(PROGS)/media/scrshoot/scrshoot.asm \
  79.  setup:SETUP:$(PROGS)/system/setup/trunk/setup.asm \
  80.  test:TEST:$(PROGS)/system/test/trunk/test.asm \
  81.  tinypad:TINYPAD:$(PROGS)/develop/tinypad/trunk/tinypad.asm \
  82.  zkey:ZKEY:$(PROGS)/system/zkey/trunk/ZKEY.ASM \
  83.  develop/board:DEVELOP/BOARD:$(PROGS)/system/board/trunk/board.asm \
  84.  develop/cObj:DEVELOP/cObj:$(PROGS)/develop/cObj/trunk/cObj.asm \
  85.  develop/fasm:DEVELOP/FASM:$(PROGS)/develop/fasm/trunk/fasm.asm \
  86.  develop/h2d2b:DEVELOP/H2D2B:$(PROGS)/develop/h2d2b/trunk/h2d2b.asm \
  87.  develop/heed:DEVELOP/HEED:$(PROGS)/develop/heed/trunk/heed.asm \
  88.  develop/ipc:DEVELOP/IPC:$(PROGS)/network/ipc/trunk/ipc.asm \
  89.  develop/keyascii:DEVELOP/KEYASCII:$(PROGS)/develop/keyascii/trunk/keyascii.asm \
  90.  develop/mtdbg:DEVELOP/MTDBG:$(PROGS)/develop/mtdbg/mtdbg.asm \
  91.  develop/scancode:DEVELOP/SCANCODE:$(PROGS)/develop/scancode/trunk/scancode.asm \
  92.  develop/t_edit:DEVELOP/T_EDIT:$(PROGS)/other/t_edit/t_edit.asm \
  93.  develop/test_gets:DEVELOP/test_gets:$(PROGS)/develop/libraries/console/examples/test_gets.asm \
  94.  develop/testcon2:DEVELOP/TESTCON2:$(PROGS)/develop/libraries/console/examples/testcon2.asm \
  95.  develop/thread:DEVELOP/THREAD:$(PROGS)/develop/examples/thread/trunk/thread.asm \
  96.  drivers/com_mouse.obj:DRIVERS/COM_MOUSE.OBJ:$(TRUNKKERNEL)/drivers/com_mouse.asm \
  97.  drivers/emu10k1x.obj:DRIVERS/EMU10K1X.OBJ:$(TRUNKKERNEL)/drivers/emu10k1x.asm \
  98.  drivers/fm801.obj:DRIVERS/FM801.OBJ:$(TRUNKKERNEL)/drivers/fm801.asm \
  99.  drivers/infinity.obj:DRIVERS/INFINITY.OBJ:$(TRUNKKERNEL)/drivers/infinity.asm \
  100.  drivers/ps2mouse.obj:DRIVERS/PS2MOUSE.OBJ:$(REPOSITORY)/drivers/mouse/ps2mouse4d/trunk/ps2mouse.asm \
  101.  drivers/sb16.obj:DRIVERS/SB16.OBJ:$(TRUNKKERNEL)/drivers/sb16/sb16.asm \
  102.  drivers/sound.obj:DRIVERS/SOUND.OBJ:$(TRUNKKERNEL)/drivers/sound.asm \
  103.  drivers/vt8235.obj:DRIVERS/VT8235.OBJ:$(TRUNKKERNEL)/drivers/vt823x.asm \
  104.  File|Managers/kfar:File|Managers/KFAR:$(PROGS)/fs/kfar/trunk/kfar.asm \
  105.  File|Managers/kfm:File|Managers/KFM:$(PROGS)/fs/kfm/trunk/kfm.asm \
  106.  File|Managers/opendial:File|Managers/OPENDIAL:$(PROGS)/fs/opendial/opendial.asm \
  107.  develop/info/asm.syn:DEVELOP/INFO/ASM.SYN:$(PROGS)/other/t_edit/info/asm_syn.asm \
  108.  develop/info/cpp_kol_cla.syn:DEVELOP/INFO/CPP_KOL_CLA.SYN:$(PROGS)/other/t_edit/info/cpp_kol_cla_syn.asm \
  109.  develop/info/cpp_kol_dar.syn:DEVELOP/INFO/CPP_KOL_DAR.SYN:$(PROGS)/other/t_edit/info/cpp_kol_dar_syn.asm \
  110.  develop/info/cpp_kol_def.syn:DEVELOP/INFO/CPP_KOL_DEF.SYN:$(PROGS)/other/t_edit/info/cpp_kol_def_syn.asm \
  111.  develop/info/default.syn:DEVELOP/INFO/DEFAULT.SYN:$(PROGS)/other/t_edit/info/default_syn.asm \
  112.  develop/info/html.syn:DEVELOP/INFO/HTML.SYN:$(PROGS)/other/t_edit/info/html_syn.asm \
  113.  develop/info/ini_files.syn:DEVELOP/INFO/INI_FILES.SYN:$(PROGS)/other/t_edit/info/ini_files_syn.asm \
  114.  develop/info/win_const.syn:DEVELOP/INFO/WIN_CONST.SYN:$(PROGS)/other/t_edit/info/win_const_syn.asm \
  115.  lib/archiver.obj:LIB/ARCHIVER.OBJ:$(PROGS)/fs/kfar/trunk/kfar_arc/kfar_arc.asm \
  116.  lib/box_lib.obj:LIB/BOX_LIB.OBJ:$(PROGS)/develop/libraries/box_lib/trunk/box_lib.asm \
  117.  lib/console.obj:LIB/CONSOLE.OBJ:$(PROGS)/develop/libraries/console/console.asm \
  118.  lib/libgfx.obj:LIB/LIBGFX.OBJ:$(PROGS)/develop/libraries/libs-dev/libgfx/libgfx.asm \
  119.  lib/libimg.obj:LIB/LIBIMG.OBJ:$(PROGS)/develop/libraries/libs-dev/libimg/libimg.asm \
  120.  lib/libini.obj:LIB/LIBINI.OBJ:$(PROGS)/develop/libraries/libs-dev/libini/libini.asm \
  121.  lib/libio.obj:LIB/LIBIO.OBJ:$(PROGS)/develop/libraries/libs-dev/libio/libio.asm \
  122.  lib/proc_lib.obj:LIB/PROC_LIB.OBJ:$(PROGS)/develop/libraries/proc_lib/trunk/proc_lib.asm \
  123.  lib/cnv_png.obj:LIB/CNV_PNG.OBJ:$(PROGS)/media/zsea/plugins/png/cnv_png.asm \
  124.  media/animage:MEDIA/ANIMAGE:$(PROGS)/media/animage/trunk/animage.asm \
  125.  media/cdp:MEDIA/CDP:$(PROGS)/media/cdp/trunk/cdp.asm \
  126.  media/kiv:MEDIA/KIV:$(PROGS)/media/kiv/trunk/kiv.asm \
  127.  media/listplay:MEDIA/LISTPLAY:$(PROGS)/media/listplay/trunk/listplay.asm \
  128.  media/midamp:MEDIA/MIDAMP:$(PROGS)/media/midamp/trunk/midamp.asm \
  129.  media/startmus:MEDIA/STARTMUS:$(PROGS)/media/startmus/trunk/STARTMUS.ASM \
  130.  network/arpcfg:NETWORK/ARPCFG:$(NETPROGS)/arpcfg/arpcfg.asm \
  131.  network/icmp:NETWORK/ICMP:$(NETPROGS)/icmp/icmp.asm \
  132.  network/netcfg:NETWORK/NETCFG:$(NETPROGS)/netcfg/netcfg.asm \
  133.  network/netstat:NETWORK/NETSTAT:$(NETPROGS)/netstat/netstat.asm \
  134.  network/nslookup:NETWORK/NSLOOKUP:$(NETPROGS)/nslookup/nslookup.asm \
  135.  network/synergyc:NETWORK/SYNERGYC:$(NETPROGS)/synergyc/synergyc.asm \
  136.  network/tcpserv:NETWORK/TCPSERV:$(NETPROGS)/tcpserv/tcpserv.asm \
  137.  network/telnet:NETWORK/TELNET:$(NETPROGS)/telnet/telnet.asm \
  138.  network/zeroconf:NETWORK/ZEROCONF:$(NETPROGS)/zeroconf/zeroconf.asm \
  139.  lib/network.obj:LIB/NETWORK.OBJ:$(NETPROGS)/libraries/network/network.asm \
  140.  drivers/3c59x.obj:DRIVERS/3C59X.OBJ:$(KERNEL)/drivers/3c59x.asm \
  141.  drivers/dec21x4x.obj:DRIVERS/DEC21X4X.OBJ:$(KERNEL)/drivers/dec21x4x.asm \
  142.  drivers/i8255x.obj:DRIVERS/I8255X.OBJ:$(KERNEL)/drivers/i8255x.asm \
  143.  drivers/mtd80x.obj:DRIVERS/MTD80X.OBJ:$(KERNEL)/drivers/mtd80x.asm \
  144.  drivers/pcnet32.obj:DRIVERS/PCNET32.OBJ:$(KERNEL)/drivers/pcnet32.asm \
  145.  drivers/r6040.obj:DRIVERS/R6040.OBJ:$(KERNEL)/drivers/R6040.asm \
  146.  drivers/rtl8029.obj:DRIVERS/RTL8029.OBJ:$(KERNEL)/drivers/RTL8029.asm \
  147.  drivers/rtl8139.obj:DRIVERS/RTL8139.OBJ:$(KERNEL)/drivers/RTL8139.asm \
  148.  drivers/rtl8169.obj:DRIVERS/RTL8169.OBJ:$(KERNEL)/drivers/RTL8169.asm \
  149.  drivers/sis900.obj:DRIVERS/SIS900.OBJ:$(KERNEL)/drivers/sis900.asm \
  150. # end of list
  151.  
  152. # The list of files which should be copied from somewhere.
  153. # Format of an item is exactly the same as in the previous list.
  154. COPY_FILES:=\
  155.  macros.inc:MACROS.INC:$(PROGS)/macros.inc \
  156.  config.inc:CONFIG.INC:$(PROGS)/config.inc \
  157.  struct.inc:STRUCT.INC:$(PROGS)/struct.inc \
  158.  develop/te_icon.png:DEVELOP/TE_ICON.PNG:$(PROGS)/other/t_edit/te_icon.png \
  159.  develop/tl_nod_16.png:DEVELOP/TL_NOD_16.PNG:$(PROGS)/other/t_edit/tl_nod_16.png \
  160.  develop/tl_sys_16.png:DEVELOP/TL_SYS_16.PNG:$(PROGS)/media/log_el/trunk/tl_sys_16.png \
  161.  File|Managers/z_icons.png:File|Managers/Z_ICONS.PNG:$(PROGS)/fs/opendial/z_icons.png \
  162.  File|Managers/kfm_keys.txt:File|Managers/KFM_KEYS.TXT:$(PROGS)/fs/kfm/trunk/docs/english/kfm_keys.txt \
  163.  File|Managers/buttons.bmp:File|Managers/BUTTONS.BMP:$(PROGS)/fs/kfm/trunk/buttons.bmp \
  164.  File|Managers/icons.bmp:File|Managers/ICONS.BMP:$(PROGS)/fs/kfm/trunk/icons.bmp \
  165.  media/kiv.ini:MEDIA/KIV.INI:$(PROGS)/media/kiv/trunk/kiv.ini \
  166.  .shell:.shell:$(PROGS)/system/shell/bin/eng/.shell \
  167.  mykey.ini:MYKEY.INI:$(PROGS)/system/MyKey/trunk/mykey.ini \
  168. # end of list
  169.  
  170. # The list of all C-- programs with one main C-- file.
  171. # Format of an item is exactly the same as in the previous list,
  172. # except that there can be fourth field with parameters for a compiler.
  173. CMM_PROGRAMS:=\
  174.  File|Managers/Eolite:File|Managers/EOLITE:$(PROGS)/fs/Eolite/trunk/Eolite.c-- \
  175.  HTMLv:HTMLv:$(PROGS)/network/htmlv/browser/HTMLv.c-- \
  176. #develop/c--:DEVELOP/C--:$(PROGS)/develop/c--/trunk/32.c-- \
  177. # end of list
  178.  
  179. # List of other files to be included in the image file.
  180. # Some of them are auto-built with special rules, some just exist before build.
  181. # Each item is of the form <local name>:<name inside image>.
  182. # Spaces should be represented as |.
  183. OTHER_FILES:=autorun.dat:AUTORUN.DAT \
  184.  background.gif:background.gif default.skn:DEFAULT.SKN \
  185.  icons.dat:ICONS.DAT iconstrp.png:ICONSTRP.PNG index_htm:INDEX.HTM \
  186.  kernel.mnt:KERNEL.MNT kerpack:KERPACK keymap.key:KEYMAP.KEY \
  187.  lang.inc:LANG.INC lang.ini:LANG.INI \
  188.  menu.dat:MENU.DAT \
  189.  panel.ini:PANEL.INI setup.dat:SETUP.DAT \
  190.  shell:SHELL \
  191.  vmode:VMODE \
  192.  File|Managers/eolite.ini:File|Managers/EOLITE.INI \
  193.  File|Managers/icons.ini:File|Managers/ICONS.INI \
  194.  File|Managers/kfar.ini:File|Managers/KFAR.INI \
  195.  File|Managers/kfm.ini:File|Managers/KFM.INI \
  196.  fonts/char2.mt:FONTS/CHAR2.MT \
  197.  fonts/char.mt:FONTS/CHAR.MT \
  198.  lib/msgbox.obj:LIB/MSGBOX.OBJ \
  199.  lib/pixlib.obj:LIB/PIXLIB.OBJ lib/sort.obj:LIB/SORT.OBJ \
  200.  media/ac97snd:MEDIA/AC97SND \
  201.  network/zeroconf.ini:NETWORK/ZEROCONF.INI \
  202. #end of list
  203.  
  204. # Some macro for convenient work.
  205. # Macros for replacing '|' to escaped space '\ '.
  206. space:=\ #plus space
  207. respace=$(subst |,$(space),$(1))
  208. # Macro for selecting different parts of ':'-separated items.
  209. binarypart=$(word 1,$(subst :, ,$(1)))
  210. imagepart=$(word 2,$(subst :, ,$(1)))
  211. sourcepart=$(word 3,$(subst :, ,$(1)))
  212. parampart=$(word 4,$(subst :, ,$(1)))
  213. # Get file names, possibly with spaces inside, from an item.
  214. # Here $(f) is an item - in fact, macro argument.
  215. fbinary=$(call respace,$(call binarypart,$(f)))
  216. fimage=$(call respace,$(call imagepart,$(f)))
  217. fsource=$(call respace,$(call sourcepart,$(f)))
  218. fparam=$(call respace,$(call parampart,$(f)))
  219.  
  220. # Define targets for image file.
  221. # Join all the lists above.
  222. targets_full:=$(COPY_FILES) $(FASM_PROGRAMS) $(NASM_PROGRAMS) $(OTHER_FILES) $(CMM_PROGRAMS)
  223. # For each item in the united list call fbinary.
  224. targets:=$(foreach f,$(targets_full),$(fbinary))
  225.  
  226. # Define a command for copying a file inside the image.
  227. # mcopy_command is a macro with two parameters,
  228. # local file name $(1) and image file name $(2).
  229. # Note that spaces in these have to be escaped with backslashes.
  230. mcopy_command=mcopy -moi $(BUILD_DIR)/kolibri.img $(1) ::$(2)
  231. # Specialize a previous command for an item $(f) in one of lists.
  232. mcopy_item_command=$(call mcopy_command,$(fbinary),$(fimage))
  233.  
  234. # Join all $(mcopy_item_command) for all items,
  235. # append newline after each item.
  236. # The first newline character after "define" line and
  237. # the last newline character before "endef" line get away
  238. # with define/endef, so we make three newline characters,
  239. # that is two empty lines, in order to get one in $(newline).
  240. define newline
  241.  
  242.  
  243. endef
  244. mcopy_all_items:=$(foreach f,$(targets_full),$(mcopy_item_command)$(newline))
  245.  
  246. # dependencies of MKISOFS_EXTRA; we iterate through $(MKISOFS_EXTRA),
  247. # substitute "=" with space, get the 2nd word and join all results
  248. mkisofs_extra_targets:=$(foreach f,$(MKISOFS_EXTRA),$(word 2,$(subst =, ,$(f))))
  249.  
  250. # The main goal: build kolibri.img and kolibri.iso
  251. all: $(BUILD_DIR)/kolibri.img
  252.  
  253. # The first goal: floppy image.
  254. $(BUILD_DIR)/kolibri.img: $(BUILD_DIR)/.dir \
  255.  Makefile \
  256.  $(BUILD_DIR)/boot_fat12.bin \
  257.  $(targets)
  258. # SYSXTREE
  259. # 3d/CUBETEXT
  260. # 3d/LOGIO.BMP
  261.         str=`date -u +"[auto-build %d %b %Y %R, r$(REV)]"`; \
  262.         echo -n $$str|dd of=kernel.mnt bs=1 seek=`expr 279 - length "$$str"` conv=notrunc 2>/dev/null
  263.         dd if=/dev/zero of=$(BUILD_DIR)/kolibri.img count=2880 bs=512 2>&1
  264.         mformat -f 1440 -i $(BUILD_DIR)/kolibri.img ::
  265.         dd if=$(BUILD_DIR)/boot_fat12.bin of=$(BUILD_DIR)/kolibri.img count=1 bs=512 conv=notrunc 2>&1
  266.         mmd -i $(BUILD_DIR)/kolibri.img ::DEVELOP
  267.         mmd -i $(BUILD_DIR)/kolibri.img ::DEVELOP/INFO
  268.         mmd -i $(BUILD_DIR)/kolibri.img ::DRIVERS
  269.         mmd -i $(BUILD_DIR)/kolibri.img ::File\ Managers
  270.         mmd -i $(BUILD_DIR)/kolibri.img ::FONTS
  271.         mmd -i $(BUILD_DIR)/kolibri.img ::LIB
  272.         mmd -i $(BUILD_DIR)/kolibri.img ::MEDIA
  273.         mmd -i $(BUILD_DIR)/kolibri.img ::NETWORK
  274.         $(mcopy_all_items)
  275.  
  276. # Special targets to modify behaviour of make.
  277. .DELETE_ON_ERROR:
  278. .SUFFIXES: # delete all predefined rules
  279.  
  280. # The floppy bootsector.
  281. $(BUILD_DIR)/boot_fat12.bin: $(TRUNKKERNEL)/bootloader/boot_fat12.asm $(TRUNKKERNEL)/bootloader/floppy1440.inc
  282.         fasm $(TRUNKKERNEL)/bootloader/boot_fat12.asm $(BUILD_DIR)/boot_fat12.bin
  283.  
  284. $(BUILD_DIR)/.dir develop/.dir develop/info/.dir drivers/.dir fonts/.dir \
  285.  lib/.dir media/.dir network/.dir .deps/.dir:
  286.         mkdir -p $(dir $@)
  287.         touch $@
  288. develop/info/.dir: develop/.dir
  289. File\ Managers/.dir:
  290.         mkdir -p "File Managers"
  291.         touch "File Managers/.dir"
  292.  
  293. # FASM black magic goes to Makefile.fasm.
  294. include Makefile.fasm
  295.  
  296. # Similar for NASM.
  297. include Makefile.nasm
  298.  
  299. # Similar for copying files.
  300. include Makefile.copy
  301.  
  302. # Special rules for copying sysfuncs.txt - it isn't directly included in the image.
  303. docpak: $(DOCDIR)SYSFUNCS.TXT $(wildcard $(DOCDIR)*)
  304. $(DOCDIR)SYSFUNCS.TXT: $(TRUNKKERNEL)/docs/sysfuncs.txt
  305.         cp $(TRUNKKERNEL)/docs/sysfuncs.txt $(DOCDIR)SYSFUNCS.TXT
  306.  
  307. # Similar for C--.
  308. include Makefile.cmm
  309.  
  310. # Sorry, even black magic seems to be insufficient for
  311. # auto-handling all subtle effects. So we just define
  312. # command lines for compiling and linking, and
  313. # maintain the list of sources and objects by hand.
  314. include Makefile.msvc
  315. include Makefile.gcc
  316.  
  317. # Rules for shell
  318. 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 \
  319.  $(PROGS)/system/shell/kolibri.ld
  320.         $(call gcc_link,$(PROGS)/system/shell/kolibri.ld)
  321. .obj.shell/shell.o: $(PROGS)/system/shell/shell.c \
  322.  $(PROGS)/system/shell/all.h \
  323.  $(PROGS)/system/shell/system/*.h \
  324.  $(PROGS)/system/shell/cmd/*.c \
  325.  $(PROGS)/system/shell/modules/*.c \
  326.  $(PROGS)/system/shell/locale/rus/globals.h \
  327.  Makefile.gcc | .obj.shell
  328.         $(gcc_compile)
  329. .obj.shell/kolibri.o .obj.shell/stdlib.o .obj.shell/string.o .obj.shell/ctype.o: .obj.shell/%.o: \
  330.  $(PROGS)/system/shell/system/%.c $(PROGS)/system/shell/system/*.h \
  331.  Makefile.gcc | .obj.shell
  332.         $(gcc_compile)
  333.         win32-gcc -c -Os -o $@ $<
  334. .obj.shell/start.o: $(PROGS)/system/shell/start.asm | .obj.shell
  335.         fasm $< $@
  336. .obj.shell:
  337.         mkdir -p .obj.shell
  338.  
  339. # Rules for sdk/sound, used by media/ac97snd
  340. SOUNDDIR=$(PROGS)/develop/sdk/trunk/sound/src
  341. SOUND_OBJECTS:=$(patsubst $(SOUNDDIR)/%.asm,.sdk/%.obj,$(wildcard $(SOUNDDIR)/*.asm))
  342. SOUND_INC_FILES:=$(wildcard $(SOUNDDIR)/*.inc)
  343. .sdk/sound.lib: $(SOUND_OBJECTS)
  344.         win32-link /lib /out:$@ $^
  345. $(SOUND_OBJECTS): .sdk/%.obj: $(SOUNDDIR)/%.asm $(SOUND_INC_FILES) | .sdk
  346.         fasm $< $@
  347. .sdk:
  348.         mkdir -p .sdk
  349. # Rules for media/ac97snd
  350. AC97DIR=$(PROGS)/media/ac97snd
  351. media/ac97snd: .obj.ac97snd/ac97snd.exe
  352.         $(msvc_final)
  353. .obj.ac97snd/ac97snd.exe: .obj.ac97snd/ac97wav.obj .obj.ac97snd/crt.obj .obj.ac97snd/k_lib.obj \
  354.         .obj.ac97snd/mpg.lib .sdk/sound.lib .obj.ac97snd/ufmod.obj
  355.         $(msvc_link)
  356. .obj.ac97snd/ac97wav.obj: $(AC97DIR)/ac97snd/ac97wav.c \
  357.         $(AC97DIR)/kolibri.h $(AC97DIR)/ac97snd/ac97wav.h $(AC97DIR)/mpg/mpg123.h \
  358.         $(AC97DIR)/sound.h $(AC97DIR)/ufmod-codec.h Makefile.msvc | .obj.ac97snd
  359.         $(msvc_compile)
  360. .obj.ac97snd/crt.obj: $(AC97DIR)/ac97snd/crt.c $(AC97DIR)/ac97snd/crt.h Makefile.msvc | .obj.ac97snd
  361.         $(msvc_compile)
  362. .obj.ac97snd/k_lib.obj: $(AC97DIR)/ac97snd/k_lib.asm $(AC97DIR)/ac97snd/proc32.inc | .obj.ac97snd
  363.         fasm $< $@
  364. .obj.ac97snd/ufmod.obj: $(AC97DIR)/ufmod-config.asm | .obj.ac97snd
  365.         fasm $< $@ -s .deps/ac97snd-ufmod.fas
  366.         prepsrc .deps/ac97snd-ufmod.fas /dev/stdout | \
  367.         perl -n -e 's|\\|/|g;s| |\\ |g;push @a,$$1 if/^;include\\ \x27(.*?)\x27/;' \
  368.         -e 'END{$$a=join " \\\n ",@a;print "$@: $$a\n$$a:\n"}' > .deps/ac97snd-ufmod.Po
  369. -include .deps/ac97snd-ufmod.Po
  370. AC97SND_MPG_C_FILES:=$(wildcard $(AC97DIR)/mpg/*.c)
  371. AC97SND_MPG_H_FILES:=$(wildcard $(AC97DIR)/mpg/*.h)
  372. AC97SND_MPG_C_OBJECTS:=$(patsubst $(AC97DIR)/mpg/%.c,.obj.ac97snd/%.o,$(AC97SND_MPG_C_FILES))
  373. .obj.ac97snd/mpg.lib: $(AC97SND_MPG_C_OBJECTS) .obj.ac97snd/pow.obj
  374.         win32-link /lib /ltcg /out:$@ $^
  375. $(AC97SND_MPG_C_OBJECTS): .obj.ac97snd/%.o: $(AC97DIR)/mpg/%.c $(AC97SND_MPG_H_FILES) Makefile.msvc | .obj.ac97snd
  376.         $(msvc_compile)
  377. .obj.ac97snd/pow.obj: $(AC97DIR)/mpg/pow.asm $(AC97DIR)/mpg/proc32.inc | .obj.ac97snd
  378.         fasm $< $@
  379. .obj.ac97snd:
  380.         mkdir -p .obj.ac97snd
  381.