]> Shamusworld >> Repos - rln/blobdiff - makefile
Fix for bug #191, thanks to jagmod for the report.
[rln] / makefile
index 8fd3cc16b7af650227c573b87473d6310bcef81e..0c14fe63e5c9a5cbaa04aae4b7f22bae45f81476 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,10 +1,10 @@
 #
-# Makefile for Reboot's Linker for Jaguar
+# Makefile for Renamed Linker for Jaguar
 #
-RM =/bin/rm -f 
-CC = gcc 
-PROGNAME = rln 
-LIBS = 
+RM =/bin/rm -f
+CC = gcc
+PROGNAME = rln
+LIBS =
 #
 # Figure out which system we're compiling for, and set the appropriate
 # variables
@@ -20,19 +20,19 @@ SYSTYPE    := WIN32
 endif
 endif
 
-CFLAGS = -g -I. -D$(SYSTYPE) -O2
-SRCS = rln.c 
+CFLAGS = -g -I. -D$(SYSTYPE) -O2 -Wno-format
+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 *~