summaryrefslogtreecommitdiffstats
path: root/src/windows
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2007-09-18 21:08:01 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2007-09-18 21:08:01 +0000
commit5f9b0e9084d4c1bfb898259ff52461661bd4c80a (patch)
treef027c3b342992fd7ab73299fde7d4e7610316f7d /src/windows
parent1aa4bf63bcaf549106851867f54d3942377a89cb (diff)
downloadkrb5-5f9b0e9084d4c1bfb898259ff52461661bd4c80a.tar.gz
krb5-5f9b0e9084d4c1bfb898259ff52461661bd4c80a.tar.xz
krb5-5f9b0e9084d4c1bfb898259ff52461661bd4c80a.zip
Windows\Identity Makefile "clean" more
make sure that we clean up vc70.pdb, vc80.pdb, and temporary files generated during the build process. ticket: new component: windows git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19955 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows')
-rw-r--r--src/windows/identity/config/Makefile.w2k2
-rw-r--r--src/windows/identity/config/Makefile.w326
-rw-r--r--src/windows/identity/help/Makefile4
-rw-r--r--src/windows/identity/kconfig/Makefile3
-rw-r--r--src/windows/identity/kcreddb/Makefile5
-rw-r--r--src/windows/identity/kherr/Makefile5
-rw-r--r--src/windows/identity/kmm/Makefile5
-rw-r--r--src/windows/identity/kmq/Makefile5
-rw-r--r--src/windows/identity/nidmgrdll/Makefile7
-rw-r--r--src/windows/identity/plugins/common/Makefile3
-rw-r--r--src/windows/identity/plugins/krb4/Makefile4
-rw-r--r--src/windows/identity/plugins/krb5/Makefile3
-rw-r--r--src/windows/identity/util/Makefile5
13 files changed, 46 insertions, 11 deletions
diff --git a/src/windows/identity/config/Makefile.w2k b/src/windows/identity/config/Makefile.w2k
index 4d500ffb8..14c707d7e 100644
--- a/src/windows/identity/config/Makefile.w2k
+++ b/src/windows/identity/config/Makefile.w2k
@@ -280,6 +280,8 @@ clean::
!if exist($(OBJ))
$(RM) $(OBJ)\
!endif
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
test::
diff --git a/src/windows/identity/config/Makefile.w32 b/src/windows/identity/config/Makefile.w32
index 467a7d6e4..c99e2620c 100644
--- a/src/windows/identity/config/Makefile.w32
+++ b/src/windows/identity/config/Makefile.w32
@@ -290,9 +290,9 @@ MC2RC=$(MC) $(MCFLAGS) -h $(OBJ)\ -m 1024 -r $(OBJ)\ -x $(OBJ)\ $**
$(RC2RES)
clean::
-!if exist($(OBJ))
- $(RM) $(OBJ)\
-!endif
+ if exist '$(OBJ)' $(RM) $(OBJ)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
test::
diff --git a/src/windows/identity/help/Makefile b/src/windows/identity/help/Makefile
index 8cb7f71a6..e8e435f6c 100644
--- a/src/windows/identity/help/Makefile
+++ b/src/windows/identity/help/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -36,4 +37,5 @@ $(CHMFILE): netidmgr.hhp
$(CP) netidmgr.chm $(CHMFILE)
clean::
- if exist '..\obj' $(RM) $(INCFILES)
+ if exist ..\obj $(RM) $(INCFILES)
+ if exist netidmgr.chm $(RM) netidmgr.chm
diff --git a/src/windows/identity/kconfig/Makefile b/src/windows/identity/kconfig/Makefile
index 98e9c25b4..965f0d0e4 100644
--- a/src/windows/identity/kconfig/Makefile
+++ b/src/windows/identity/kconfig/Makefile
@@ -36,6 +36,9 @@ all: mkdirs $(INCFILES) $(OBJFILES)
clean::
if exist '..\obj' $(RM) $(INCFILES)
+ if exist 'vc70.pdb' $(RM) vc70.pdb
+ if exist 'vc80.pdb' $(RM) vc80.pdb
+
# Tests
test:: util_test
diff --git a/src/windows/identity/kcreddb/Makefile b/src/windows/identity/kcreddb/Makefile
index 579e4544a..de00cdb6a 100644
--- a/src/windows/identity/kcreddb/Makefile
+++ b/src/windows/identity/kcreddb/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -49,4 +50,6 @@ $(OBJ)\kcredres.res: lang\en_us\kcredres.rc
all: mkdirs $(INCFILES) $(OBJ)\kcredres.res $(OBJFILES)
clean::
- if exist '..\obj' $(RM) $(INCFILES) \ No newline at end of file
+ if exist ..\obj $(RM) $(INCFILES)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
diff --git a/src/windows/identity/kherr/Makefile b/src/windows/identity/kherr/Makefile
index 26021d465..e739fd4e3 100644
--- a/src/windows/identity/kherr/Makefile
+++ b/src/windows/identity/kherr/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -40,4 +41,6 @@ SDKLIBFILES= \
all: mkdirs $(INCFILES) $(OBJFILES)
clean::
- if exist '..\obj' $(RM) $(INCFILES) \ No newline at end of file
+ if exist ..\obj $(RM) $(INCFILES)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
diff --git a/src/windows/identity/kmm/Makefile b/src/windows/identity/kmm/Makefile
index 6a3edfa85..8100f0eaf 100644
--- a/src/windows/identity/kmm/Makefile
+++ b/src/windows/identity/kmm/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -51,4 +52,6 @@ $(OBJ)\kmm_msgs.rc: lang\kmm_msgs.mc
all: mkdirs $(INCFILES) $(MSGRESFILE) $(OBJFILES)
clean::
- if exist '..\obj' $(RM) $(INCFILES) \ No newline at end of file
+ if exist ..\obj $(RM) $(INCFILES)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
diff --git a/src/windows/identity/kmq/Makefile b/src/windows/identity/kmq/Makefile
index 20f65b1a6..443f90c09 100644
--- a/src/windows/identity/kmq/Makefile
+++ b/src/windows/identity/kmq/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -45,4 +46,6 @@ $(OBJ)\kmqconfig.c: kmqconfig.csv $(CONFDIR)\csvschema.cfg
all: mkdirs $(INCFILES) $(OBJFILES)
clean::
- if exist '..\obj' $(RM) $(INCFILES) \ No newline at end of file
+ if exist ..\obj $(RM) $(INCFILES)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
diff --git a/src/windows/identity/nidmgrdll/Makefile b/src/windows/identity/nidmgrdll/Makefile
index 7525b91cd..056178bca 100644
--- a/src/windows/identity/nidmgrdll/Makefile
+++ b/src/windows/identity/nidmgrdll/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -120,5 +121,7 @@ $(DLLFILE): $(OBJFILES) $(RESFILES)
all: mkdirs $(DLLFILE)
clean::
- if exist '$(DLLFILE)' $(RM) $(DLLFILE)
- if exist '$(DLLFILE).manifest' $(RM) $(DLLFILE).manifest
+ if exist $(DLLFILE) $(RM) $(DLLFILE)
+ if exist $(DLLFILE).manifest $(RM) $(DLLFILE).manifest
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
diff --git a/src/windows/identity/plugins/common/Makefile b/src/windows/identity/plugins/common/Makefile
index b4085d13f..e77d1c5de 100644
--- a/src/windows/identity/plugins/common/Makefile
+++ b/src/windows/identity/plugins/common/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -38,6 +39,8 @@ all: mkdirs $(INCFILES) $(OBJFILES)
clean::
if exist "$(INCDIR)" $(RM) $(INCFILES)
if exist "$(LIBDIR)" $(RM) $(OBJFILES)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
{}.c{$(LIBDIR)}.obj:
$(C2OBJ)
diff --git a/src/windows/identity/plugins/krb4/Makefile b/src/windows/identity/plugins/krb4/Makefile
index d57a213aa..50fb46998 100644
--- a/src/windows/identity/plugins/krb4/Makefile
+++ b/src/windows/identity/plugins/krb4/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -101,3 +102,6 @@ clean::
!if defined(INCFILES)
$(RM) $(INCFILES)
!endif
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
+
diff --git a/src/windows/identity/plugins/krb5/Makefile b/src/windows/identity/plugins/krb5/Makefile
index cc797893a..edac6eecc 100644
--- a/src/windows/identity/plugins/krb5/Makefile
+++ b/src/windows/identity/plugins/krb5/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -110,3 +111,5 @@ clean::
!if defined(INCFILES)
$(RM) $(INCFILES)
!endif
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb
diff --git a/src/windows/identity/util/Makefile b/src/windows/identity/util/Makefile
index 97aff0e6d..30d4d7297 100644
--- a/src/windows/identity/util/Makefile
+++ b/src/windows/identity/util/Makefile
@@ -1,5 +1,6 @@
#
# Copyright (c) 2004 Massachusetts Institute of Technology
+# Copyright (c) 2007 Secure Endpoints Inc.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -45,4 +46,6 @@ SDKLIBFILES=
all: mkdirs $(INCFILES) $(OBJFILES)
clean::
- if exist '..\obj' $(RM) $(INCFILES) \ No newline at end of file
+ if exist ..\obj $(RM) $(INCFILES)
+ if exist vc70.pdb $(RM) vc70.pdb
+ if exist vc80.pdb $(RM) vc80.pdb