X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libsrc%2Fgeos%2Fdevel%2FMakefile;h=bb5c4d71999fe1cd5152616474069170f23b8ff0;hb=9948b5acfe552de93cfb3bd9495babf19a7f3814;hp=e7c140ad54c8deb57bf1ad59ce1606299d7cd938;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/libsrc/geos/devel/Makefile b/libsrc/geos/devel/Makefile index e7c140ad5..bb5c4d719 100644 --- a/libsrc/geos/devel/Makefile +++ b/libsrc/geos/devel/Makefile @@ -5,13 +5,37 @@ # %.o: %.s - @echo $< @$(AS) -o $@ $(AFLAGS) $< +%.emd: %.o ../../runtime/zeropage.o + @$(LD) -o $@ -t module $^ -S_OBJS = crt0.o +%.joy: %.o ../../runtime/zeropage.o + @$(LD) -o $@ -t module $^ -all: $(S_OBJS) +%.tgi: %.o ../../runtime/zeropage.o + @$(LD) -o $@ -t module $^ + +S_OBJS = crt0.o \ + extzp.o \ + fio_module.o \ + joy_stddrv.o \ + mainargs.o \ + oserror.o \ + oserrlist.o \ + randomize.o \ + tgi_mode_table.o + +#-------------------------------------------------------------------------- +# Drivers + +EMDS = geos-vdc.emd + +JOYS = geos-stdjoy.joy + +TGIS = geos-tgi.tgi + +all: $(S_OBJS) $(EMDS) $(JOYS) $(TGIS) clean: - @rm -f *.~ $(S_OBJS) core \ No newline at end of file + @$(RM) *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)