]> git.sur5r.net Git - openldap/blob - libraries/msdos/makelber.nfs
Fixed SASL interactive free bug (ITS#2423)
[openldap] / libraries / msdos / makelber.nfs
1 #-----------------------------------------------------------------------------
2 # Copyright (c) 1992 Regents of the University of Michigan.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms are permitted
6 # provided that this notice is preserved and that due credit is given
7 # to the University of Michigan at Ann Arbor. The name of the University
8 # may not be used to endorse or promote products derived from this
9 # software without specific prior written permission. This software
10 # is provided ``as is'' without express or implied warranty.
11 #
12 #       LDAP lightweight X.500 Directory access top level makefile for MSC
13 #
14 #-----------------------------------------------------------------------------
15
16 SRCS    = decode.c encode.c io.c msdos.c lp.c
17 OBJS    = decode.obj encode.obj io.obj msdos.obj lp.obj
18
19 NOLOGO  = /nologo
20 CC      = cl $(NOLOGO)
21 MAKE    = nmake $(NOLOGO)
22
23 default:
24         cd ..
25         $(MAKE) lber-lib
26
27 all:    $(OBJS) liblber.lib
28
29 decode.obj:     decode.c
30         $(CC) $(CFLAGS) decode.c
31
32 encode.obj:     encode.c
33         $(CC) $(CFLAGS) encode.c
34
35 io.obj: io.c
36         $(CC) $(CFLAGS) io.c
37
38 msdos.obj:      msdos.c
39         $(CC) $(CFLAGS) msdos.c
40
41 lp.obj: lp.c
42         $(CC) $(CFLAGS) lp.c
43
44 liblber.lib:    $(OBJS)
45         del liblber.lib
46         lib $(NOLOGO) liblber.lib +decode.obj+encode.obj+io.obj+msdos.obj+lp.obj;
47
48 clean:
49         del *.obj
50         del *.lib