From: Alan Cox Date: Tue, 11 Sep 2018 22:20:36 +0000 (+0100) Subject: plato: hopefully fix the Makefile X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=728b1fd638f0f0d7297c75312adaa04cbf47ce7a;p=FUZIX.git plato: hopefully fix the Makefile --- diff --git a/Applications/plato/Makefile.68000 b/Applications/plato/Makefile.68000 index 0122fb42..fbd7105c 100644 --- a/Applications/plato/Makefile.68000 +++ b/Applications/plato/Makefile.68000 @@ -28,7 +28,7 @@ OBJS = $(SRCS:.c=.o) FOBJS = $(patsubst fuzix/%.c,%.o, $(FSRCS)) plato: $(OBJS) $(FOBJS) - $(LINKER) $(LINKER_OPT) -o plato $(OBJS) $(FOBJS) + $(LINKER) -o plato $(OBJS) $(FOBJS) $(LINKER_OPT) $(OBJS): %.o: %.c $(CC) $(COPT) $(CFLAGS) -c $< -o $@