aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--version.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b3679a9..587280c 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ hostconfig.h:
$(BUILDDIR)/%.o: %.c hostconfig.h
@mkdir -p `dirname $@`
- @cc $(CFLAGS) -MMD -MP -fsyntax-only -MF $(BUILDDIR)/$*.d -MT $@ $< #depfiles
+ @cc $(CFLAGS) -w -MMD -MP -fsyntax-only -MF $(BUILDDIR)/$*.d -MT $@ $< #depfiles
$(CC) $(CFLAGS) -c -o $@ $<
clean:
diff --git a/version.h b/version.h
index e2d8ce1..65a90a5 100644
--- a/version.h
+++ b/version.h
@@ -1,10 +1,10 @@
#ifndef VERSION_H_
#define VERSION_H_
-/* 0.1.6 */
+/* 0.1.7 */
#define ANTCC_VERSION_MAJOR 0
#define ANTCC_VERSION_MINOR 1
-#define ANTCC_VERSION_PATCH 6
+#define ANTCC_VERSION_PATCH 7
#define XSTR_(...) #__VA_ARGS__
#define XSTR(...) XSTR_(__VA_ARGS__)