X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=blobdiff_plain;f=makefile;fp=makefile;h=0c14fe63e5c9a5cbaa04aae4b7f22bae45f81476;hp=b70cc77a8388f68cbcfd0729a71eda4bfd4c38e4;hb=a839b5e1b42ccc20bc7a0960c79c6916415adffb;hpb=52963cddfc29b2981d549ff785c1a24d814f7290 diff --git a/makefile b/makefile index b70cc77..0c14fe6 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ # -# Makefile for Reboot's Linker for Jaguar +# Makefile for Renamed Linker for Jaguar # RM =/bin/rm -f CC = gcc @@ -21,18 +21,18 @@ endif endif CFLAGS = -g -I. -D$(SYSTYPE) -O2 -Wno-format -SRCS = rln.c +SRCS = rln.c OBJS = rln.o -.c.o: - $(RM) $@ - $(CROSS)$(CC) $(CFLAGS) -c $*.c +.c.o: + $(RM) $@ + $(CROSS)$(CC) $(CFLAGS) -c $*.c -all: $(PROGNAME) +all: $(PROGNAME) -$(PROGNAME) : $(OBJS) - $(CROSS)$(CC) $(CFLAGS) -o $(PROGNAME) $(OBJS) $(LIBS) +$(PROGNAME) : $(OBJS) + $(CROSS)$(CC) $(CFLAGS) -o $(PROGNAME) $(OBJS) $(LIBS) -clean: - $(RM) $(OBJS) $(PROGNAME) $(PROGNAME).exe *~ +clean: + $(RM) $(OBJS) $(PROGNAME) $(PROGNAME).exe *~