X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libsrc%2Fgeos%2Fdevel%2FMakefile;h=bb5c4d71999fe1cd5152616474069170f23b8ff0;hb=9948b5acfe552de93cfb3bd9495babf19a7f3814;hp=ebe4e2a7a8724663fa2403954d9a47a10d83f23d;hpb=0264d31e7c07629f27e7289dfe513934fe0bd9db;p=cc65 diff --git a/libsrc/geos/devel/Makefile b/libsrc/geos/devel/Makefile index ebe4e2a7a..bb5c4d719 100644 --- a/libsrc/geos/devel/Makefile +++ b/libsrc/geos/devel/Makefile @@ -8,15 +8,23 @@ @$(AS) -o $@ $(AFLAGS) $< %.emd: %.o ../../runtime/zeropage.o - @$(LD) -t module -o $@ $^ + @$(LD) -o $@ -t module $^ %.joy: %.o ../../runtime/zeropage.o - @$(LD) -t module -o $@ $^ + @$(LD) -o $@ -t module $^ %.tgi: %.o ../../runtime/zeropage.o - @$(LD) -t module -o $@ $^ - -S_OBJS = crt0.o geoszp.o oserror.o oserrlist.o randomize.o fio_module.o tgi_mode_table.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 @@ -30,4 +38,4 @@ TGIS = geos-tgi.tgi all: $(S_OBJS) $(EMDS) $(JOYS) $(TGIS) clean: - @rm -f *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o) + @$(RM) *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)