]> skyeroc.xyz Git - dgamelaunch/commitdiff
remove -Wno-unused-parameter and -W, former is not supported by older gccs
authorJoshua Kwan <joshk@triplehelix.org>
Sat, 3 Jan 2004 00:30:47 +0000 (00:30 +0000)
committerJoshua Kwan <joshk@triplehelix.org>
Sat, 3 Jan 2004 00:30:47 +0000 (00:30 +0000)
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@46 db0b04b0-f4d1-0310-9a6d-de3e77497b0e

Makefile

index 5c96a2582a30e6bfc262653e7d9e4e13b98c7f43..6aa8279d54f0b6064283b25bb975264af58c401b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ endif
 
 CC = gcc
 LDFLAGS = 
-CFLAGS = -g3 $(optimize) -Wall -W $(DEFS)
+CFLAGS = -g3 $(optimize) -Wall $(DEFS)
 DEFS = -DVERSION=\"$(VERSION)\"
 SRCS = virus.c ttyrec.c dgamelaunch.c io.c ttyplay.c stripgfx.c
 OBJS = $(SRCS:.c=.o)
@@ -22,8 +22,10 @@ $(NAME): $(OBJS)
 clean:
        rm -f dgamelaunch
        rm -f *.o .#* *~
+       
 install:
        cp dgamelaunch /usr/sbin
+       
 indent:
        indent -nut -ts2 *.c *.h
        rm -f *~