cscg22-gearboy

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

Makefile (502B)


      1# z80 specific Makefile
      2
      3TOPDIR = ../../..
      4
      5THIS = z80
      6
      7ASSRC = __strreverse.s strcpy.s strlen.s \
      8	divmixed.s divsigned.s divunsigned.s \
      9	modsigned.s modunsigned.s modmixed.s \
     10	mul.s mulchar.s \
     11	__itoa.s __ltoa.s \
     12	__uitobcd.s __ultobcd.s \
     13	memcpy.s memmove.s memset.s memcmp.s \
     14	setjmp.s \
     15	abs.s \
     16	rand.s arand.s \
     17	__sdcc_call_hl.s __sdcc_call_iy.s \
     18	atomic_flag_test_and_set.s __sdcc_critical.s \
     19	crtenter.s 
     20
     21include $(TOPDIR)/Makefile.common
     22
     23AS = $(AS_Z80)
     24
     25include ../Makefile.port
     26
     27