From: Joshua Kwan Date: Sat, 3 Jan 2004 00:30:47 +0000 (+0000) Subject: remove -Wno-unused-parameter and -W, former is not supported by older gccs X-Git-Tag: v1.6.1-roc-dev~652 X-Git-Url: https://skyeroc.xyz/gitweb/?a=commitdiff_plain;h=e5454e9f8a1782829bf2d8e89d7aa0b94fe63179;p=dgamelaunch remove -Wno-unused-parameter and -W, former is not supported by older gccs git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@46 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- diff --git a/Makefile b/Makefile index 5c96a25..6aa8279 100644 --- 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 *~