summaryrefslogtreecommitdiffstats
path: root/src/windows/cns/Makefile.in
blob: 4759d16cb497f43c335a0af50d3262226b693aa8 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# makefile: Constructs the Kerberos for Windows ticket manager
# Works for both k4 and k5 releases.
#
NAME 	 = krb5
OBJS 	 = $(NAME).obj tktlist.obj

##### Options
DEBUG 	 = 1
!IF ! defined(KVERSION)
KVERSION = 5
!endif
KRB 	 = KRB$(KVERSION)

!if $(KVERSION) == 4
BUILDTOP = ..
LIBDIR 	 = $(BUILDTOP)\lib\krb
KLIB 	 = $(LIBDIR)\kerberos.lib 
WLIB 	 = $(LIBDIR)\winsock.lib
INCLUDES = /I$(BUILDTOP)\include
XOBJS    = 
!endif

!if $(KVERSION) == 5
BUILDTOP =..\..
LIBDIR	 = $(BUILDTOP)\lib
KLIB	 = $(LIBDIR)\krb5_16.lib
WLIB	 = $(LIBDIR)\winsock.lib
INCLUDES = /I$(BUILDTOP)\include /I$(BUILDTOP)\include\krb5
XOBJS    = kpasswd.obj
!endif

##### C Compiler
CC 	 = cl
CFLAGS_RELEASE = /nologo /W3 /AL /GAs /G2 /Zp /O2 /DNDEBUG=1
CFLAGS_DEBUG   = /nologo /W3 /AL /GAs /G2 /Zp /O2 /Od /Zi
!if $(DEBUG)
CFLAGS 	 = $(CFLAGS_DEBUG) $(INCLUDES) /D$(KRB)=1
!else
CFLAGS 	 = $(CFLAGS_RELEASE) $(INCLUDES) /D$(KRB)=1
!endif

##### RC Compiler
RC 	 = rc
##WIN16##RFLAGS 	 = /nologo /D$(KRB)=1 $(INCLUDES)
##WIN32##RFLAGS 	 = /D$(KRB)=1 $(INCLUDES)

##### Linker
LINK 	 = link
LIBS 	 = $(KLIB) $(WLIB)
SYSLIBS  = libw llibcew
!if $(DEBUG)
LFLAGS 	 = /co /nologo /nod /nopackcode /map:full
!else
LFLAGS 	 = /nologo /nod /nopackcode
!endif

all:: makefile $(NAME).exe

$(NAME).exe: $*.def $*.res $(OBJS) $(XOBJS) $(LIBS)
	$(LINK) $(LFLAGS) $(OBJS) $(XOBJS), $@, $*.map, \
	  $(LIBS) $(SYSLIBS), $*.def
	$(RC) $(RFLAGS) /k $*.res $@

install:
	copy $(NAME).exe ..\floppy

clean:: 
	if exist *.obj del *.obj
	if exist *.exe del *.exe
	if exist *.res del *.res
	if exist *.map del *.map
	if exist *.pdb del *.pdb
	if exist *.err del *.err
	if exist ..\floppy\$(NAME).exe del ..\floppy\$(NAME).exe

$(OBJS) $(NAME).res: $(NAME).h tktlist.h

$(NAME).res: clock00.ico clock05.ico clock10.ico clock15.ico clock20.ico \
	     clock25.ico clock30.ico clock35.ico clock40.ico clock45.ico \
	     clock50.ico clock55.ico clock60.ico clockexp.ico clocktkt.ico \
	     cns.ico