summaryrefslogtreecommitdiff
path: root/wiretap/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-08 18:08:25 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-08 18:08:25 +0000
commit15f33eecbf2228e5df8172277b54a791ddd46662 (patch)
tree73143a248a7ebccd568ee1dafdf62d9030ac6a3c /wiretap/Makefile.nmake
parentd6d9e7afdcf4d3856c4fc81721a13e398cfed6da (diff)
downloadwireshark-15f33eecbf2228e5df8172277b54a791ddd46662.tar.gz
Disable warnings-as-errors for Flex-generated output. Add a couple of gsize
casts. svn path=/trunk/; revision=28002
Diffstat (limited to 'wiretap/Makefile.nmake')
-rw-r--r--wiretap/Makefile.nmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/Makefile.nmake b/wiretap/Makefile.nmake
index f9e347a9ad..bacda61b17 100644
--- a/wiretap/Makefile.nmake
+++ b/wiretap/Makefile.nmake
@@ -8,7 +8,7 @@ include ..\Makefile.nmake.inc
include Makefile.common
-# We GENERATED_CFLAGS to get around flex's non-LLP64-compliant output
+# We use GENERATED_CFLAGS to get around flex's non-LLP64-compliant output
GENERATED_CFLAGS=-DYYMALLOC=malloc -DYYFREE=free -DHAVE_CONFIG_H /I. /I.. \
$(GLIB_CFLAGS) $(ZLIB_CFLAGS) /I$(PCAP_DIR)/include \
-D_U_="" $(LOCAL_CFLAGS)
@@ -43,11 +43,11 @@ RUNLEX = ..\tools\runlex.sh
ascend-scanner_lex.h : ascend-scanner.c
ascend-scanner.obj : ascend-scanner.c ascend-grammar.h
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c ascend-scanner.c
+ $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $?
k12text_lex.h : k12text.c
k12text.obj : k12text.c
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c k12text.c
+ $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $?
ascend-grammar.c ascend-grammar.h : ascend-grammar.y
$(YACC) $(YACC_OPTS) -d -p ascend ascend-grammar.y -o ascend-grammar.c