aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt/Makefile.nmake
blob: 2b07cb366854fb907f665065728799703a4ea440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## Makefile for building airpdcap.lib with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id$

include ..\..\config.nmake
include Makefile.common

############### no need to modify below this line #########

CFLAGS=-WX -DHAVE_CONFIG_H $(GLIB_CFLAGS) -D_U_="" /I../.. $(LOCAL_CFLAGS)

.c.obj::
	$(CC) $(CFLAGS)  -Fd.\ -c $<

AIRPDCAP_OBJECTS = $(LIBAIRPDCAP_SRC:.c=.obj)

airpdcap.lib: $(AIRPDCAP_OBJECTS) 
	link /lib /out:airpdcap.lib $(AIRPDCAP_OBJECTS) 

clean:
        rm -f $(AIRPDCAP_OBJECTS) airpdcap.lib *.pdb

distclean: clean

maintainer-clean: distclean