From 95e09f5ac390bd671e59a6e2bcc7f62bfcf8c8ec Mon Sep 17 00:00:00 2001 From: Gilbert Ramirez Date: Fri, 2 Feb 2001 04:03:43 +0000 Subject: 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 --- epan/ftypes/Makefile.nmake | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 epan/ftypes/Makefile.nmake (limited to 'epan/ftypes/Makefile.nmake') 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 + -- cgit v1.2.1