]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
Update doc/specification.tex
[xonotic/gmqcc.git] / Makefile
index 85848e437aafc5db31ad6476b405537d0a27afae..e31c0987124ba0596fd39040d18a920c312cabfe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -9,22 +9,24 @@ CYGWIN  = $(findstring CYGWIN,  $(UNAME))
 MINGW   = $(findstring MINGW32, $(UNAME))
 
 CC     ?= clang
-CFLAGS += -Wall -Wextra -I. -fno-strict-aliasing -fsigned-char
+CFLAGS += -Wall -Wextra -I. -fno-strict-aliasing -fsigned-char -Wno-overlength-strings
 ifneq ($(shell git describe --always 2>/dev/null),)
     CFLAGS += -DGMQCC_GITINFO="\"$(shell git describe --always)\""
 endif
 #turn on tons of warnings if clang is present
 # but also turn off the STUPID ONES
 ifeq ($(CC), clang)
-       CFLAGS +=                         \
-               -Weverything                  \
-               -Wno-padded                   \
-               -Wno-format-nonliteral        \
-               -Wno-disabled-macro-expansion \
-               -Wno-conversion               \
-               -Wno-missing-prototypes       \
-               -Wno-float-equal              \
-               -Wno-cast-align
+       CFLAGS +=                               \
+               -Weverything                       \
+               -Wno-padded                        \
+               -Wno-format-nonliteral             \
+               -Wno-disabled-macro-expansion      \
+               -Wno-conversion                    \
+               -Wno-missing-prototypes            \
+               -Wno-float-equal                   \
+               -Wno-cast-align                    \
+               -Wno-missing-variable-declarations \
+               -Wno-unknown-warning-option
 else
        #Tiny C Compiler doesn't know what -pedantic-errors is
        # and instead of ignoring .. just errors.
@@ -150,10 +152,8 @@ all: $(GMQCC) $(QCVM) $(TESTSUITE)
 
 check: all
        @ ./$(TESTSUITE)
-
-# alias to check because test.o exists and people will get confused
-# about the undefined references to X.
 test: check
+       @ ./$(TESTSUITE)
 
 clean:
        rm -f *.o $(GMQCC) $(QCVM) $(TESTSUITE) *.dat
@@ -181,8 +181,14 @@ install-qcvm: $(QCVM)
        install    -m755  $(QCVM)      $(DESTDIR)$(BINDIR)/qcvm
 install-doc:
        install -d -m755               $(DESTDIR)$(MANDIR)/man1
-       install    -m755  doc/gmqcc.1  $(DESTDIR)$(MANDIR)/man1/
-       install    -m755  doc/qcvm.1   $(DESTDIR)$(MANDIR)/man1/
+       install    -m644  doc/gmqcc.1  $(DESTDIR)$(MANDIR)/man1/
+       install    -m644  doc/qcvm.1   $(DESTDIR)$(MANDIR)/man1/
+
+uninstall:
+       rm $(DESTDIR)$(BINDIR)/gmqcc
+       rm $(DESTDIR)$(BINDIR)/qcvm
+       rm $(DESTDIR)$(MANDIR)/man1/doc/gmqcc.1
+       rm $(DESTDIR)$(MANDIR)/man1/doc/qcvm.1
 
 # DO NOT DELETE