]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
Constant fold intrinsics if their arguments are constant. TODO: reference count intri...
[xonotic/gmqcc.git] / Makefile
index c174b9185758665f5623cde60cd9c5d6a061bcb0..eee0d49717b0b5d68f43075ef309691c298bc769 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,11 @@ else
 endif
 
 ifneq ($(shell git describe --always 2>/dev/null),)
-    CFLAGS += -DGMQCC_GITINFO="\"$(shell git describe --always)\""
+       CFLAGS += -DGMQCC_GITINFO="\"$(shell git describe --always)\""
+endif
+
+ifeq ($(shell valgrind --version 2>/dev/null),)
+       CFLAGS += -DNVALGRIND
 endif
 
 # do this last otherwise there is whitespace in the command output and
@@ -78,8 +82,8 @@ endif
 endif
 
 #standard rules
-%.o: %.c
-       $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) 
+c.o:
+       $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS)
 
 exec-standalone.o: exec.c
        $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) -DQCVM_EXECUTOR=1