cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

Makefile (685B)


      1# GB specific Makefile
      2
      3TOPDIR = ../../../..
      4
      5THIS = msxdos
      6PORT = z80
      7
      8CSRC = crlf.c 
      9
     10ASSRC =	set_interrupts.s \
     11	outi.s \
     12	bdos_putchar.s bdos_getchar.s bdos_gets.s \
     13	msx_refresh_oam.s \
     14	msx_write_vdp.s \
     15	msx_set_native_data.s msx_set_1bpp_data.s msx_set_1bpp_sprite_data.s \
     16	msx_set_tile_map.s msx_set_tile_map_xy.s \
     17	msx_fill_rect.s msx_fill_rect_xy.s \
     18	msx_metasprites.s msx_metasprites_hide.s msx_metasprites_hide_spr.s \
     19	pad.s \
     20	msx_int.s \
     21	mode.s clock.s \
     22	delay.s \
     23	memset_small.s \
     24	far_ptr.s \
     25	color.s \
     26	heap.s \
     27	__sdcc_bcall.s __sdcc_bcall_abc.s \
     28	crt0.s
     29
     30CRT0 =	crt0.s
     31
     32include $(TOPDIR)/Makefile.common
     33
     34AS = $(AS_Z80)
     35
     36include ../../../Makefile.platform