]> mj.ucw.cz Git - eval.git/blobdiff - Makefile
Fixed a comment.
[eval.git] / Makefile
index 70d6c0aeb9daa095bf1f5dcef20c01028865dd96..7bc8e4a229727e3956673ce202df8cf8f04e499a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,20 @@
-VERSION=1.0
+# Makefile for mo-eval and related utilities
+# (c) 2007 Martin Mares <mj@ucw.cz>
+
+VERSION=1.0.1
 #DEBUG=-ggdb
-CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG)
+CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -Winline $(DEBUG) -std=gnu99
+
+# Comment out if you are using a recent gcc
+CFLAGS+=-Wno-pointer-sign -Wdisabled-optimization -Wno-missing-field-initializers
+
+# Comment out if you do not wish to build remote submit utilities
+SUBMIT=submit
+LIBUCW:=$(shell cd ../libucw && pwd)
 
-all: bin/box bin/iwrapper bin/md5crypt
+export LIBUCW CFLAGS LDFLAGS DEBUG
+
+all: bin/box bin/iwrapper bin/md5crypt bin/pedant $(SUBMIT)
 
 bin/%: src/%.o
        $(CC) $(LDFLAGS) -o $@ $^
@@ -10,11 +22,24 @@ bin/%: src/%.o
 bin/box: src/box.o
 bin/iwrapper: src/iwrapper.o
 bin/md5crypt: src/md5crypt.o src/md5.o
+bin/pedant: src/pedant.o
+
+submit:
 
-clean:
+clean::
        rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
-       rm -f bin/box bin/iwrapper bin/md5crypt
+       rm -f bin/box bin/iwrapper bin/md5crypt bin/pedant
 
 distclean: clean
 
-.PHONY: all clean distclean
+ifdef SUBMIT
+
+submit:
+       $(MAKE) -C submit
+
+clean::
+       $(MAKE) -C submit clean
+
+endif
+
+.PHONY: all clean distclean submit