Use "$(OBJECTS)" whenever a complete list of .obj files appears, rather
[obnox/wireshark/wip.git] / plugins / pcli / Makefile.nmake
1 #
2 # $Id: Makefile.nmake,v 1.5 2003/11/06 09:05:14 guy Exp $
3 #
4
5 include ..\..\config.nmake
6
7 ############### no need to modify below this line #########
8
9 CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
10         /I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
11
12 OBJECTS=packet-pcli.obj 
13
14 pcli.dll pcli.exp pcli.lib : $(OBJECTS) ..\plugin_api.obj
15         link -dll /out:pcli.dll $(OBJECTS) ..\plugin_api.obj \
16         $(GLIB_LIBS)
17
18 clean:
19         rm -f $(OBJECTS) pcli.dll pcli.exp pcli.lib $(PDB_FILE)
20
21 distclean: clean