wireshark/plugins/pcli/Makefile.nmake
Guy Harris cbfc93b82e Use "$(OBJECTS)" whenever a complete list of .obj files appears, rather
than repeating the list from the setting of OBJECTS.

svn path=/trunk/; revision=8893
2003-11-06 09:05:14 +00:00

22 lines
502 B
Makefile

#
# $Id: Makefile.nmake,v 1.5 2003/11/06 09:05:14 guy Exp $
#
include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
OBJECTS=packet-pcli.obj
pcli.dll pcli.exp pcli.lib : $(OBJECTS) ..\plugin_api.obj
link -dll /out:pcli.dll $(OBJECTS) ..\plugin_api.obj \
$(GLIB_LIBS)
clean:
rm -f $(OBJECTS) pcli.dll pcli.exp pcli.lib $(PDB_FILE)
distclean: clean