summaryrefslogtreecommitdiff
path: root/epan/ftypes/Makefile.nmake
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2001-02-02 04:03:43 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2001-02-02 04:03:43 +0000
commit95e09f5ac390bd671e59a6e2bcc7f62bfcf8c8ec (patch)
tree062fdb99cae555ef23486b1b3a003782a398d7d2 /epan/ftypes/Makefile.nmake
parent9627904c2a7f473ebe9d091d27fe482c05acc95f (diff)
downloadwireshark-95e09f5ac390bd671e59a6e2bcc7f62bfcf8c8ec.tar.gz
Add Makefile.nmake files for new subdirs.
Add them to EXTRA_DIST in corresponding Makefile.am's so that they get packaged with the distribution. svn path=/trunk/; revision=2979
Diffstat (limited to 'epan/ftypes/Makefile.nmake')
-rw-r--r--epan/ftypes/Makefile.nmake33
1 files changed, 33 insertions, 0 deletions
diff --git a/epan/ftypes/Makefile.nmake b/epan/ftypes/Makefile.nmake
new file mode 100644
index 0000000000..0f24034546
--- /dev/null
+++ b/epan/ftypes/Makefile.nmake
@@ -0,0 +1,33 @@
+include ..\..\config.nmake
+
+############### no need to modify below this line #########
+
+CFLAGS=/MT /DHAVE_CONFIG_H /I. /I.. /I../.. \
+ /I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
+ /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
+ /I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
+
+
+{$S}.c{$O}.obj::
+ $(CC) $(CFLAGS) -Fd$O\ -c $<
+
+
+OBJECTS = \
+ ftypes.obj \
+ ftype-bytes.obj \
+ ftype-double.obj \
+ ftype-integer.obj \
+ ftype-ipv4.obj \
+ ftype-none.obj \
+ ftype-string.obj \
+ ftype-time.obj \
+ ftype-tvbuff.obj
+
+
+ftypes.lib : $(OBJECTS)
+ lib /out:ftypes.lib $(OBJECTS)
+
+
+clean:
+ rm -f $(OBJECTS) ftypes.lib
+