wireshark/tools/lemon/Makefile.nmake

20 lines
379 B
Makefile

## Makefile for building wireshark.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
include ..\..\config.nmake
CFLAGS=$(WARNINGS_ARE_ERRORS) -I..\..\ $(LOCAL_CFLAGS)
.c.obj::
$(CC) $(CFLAGS) -Fd.\ -c $<
all : lemon.exe
clean:
rm -f lemon.obj lemon.exe lemon.ilk *.pdb *.sbr lemon.exe.manifest
distclean: clean
maintainer-clean: distclean