From 0342cdb2d3710f7d56a5b93ca8aedf7b2df835fc Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 21 Jan 2010 17:38:43 -0500 Subject: [PATCH] Windows: add build and clean rule for bc.h Add a dependency rule to build bc.h before it is installed Add cleanup rules to delete bc.h and other installed files. Change-Id: I9a40fd64aff048bfc87b9fd823ae7499816cb3e5 Reviewed-on: http://gerrit.openafs.org/1139 Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- src/bucoord/NTMakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bucoord/NTMakefile b/src/bucoord/NTMakefile index bdc05a9d0..0151a882b 100644 --- a/src/bucoord/NTMakefile +++ b/src/bucoord/NTMakefile @@ -16,6 +16,8 @@ INCFILES = \ $(DESTDIR)\include\afs\bc.h \ $(DESTDIR)\include\afs\bucoord_prototypes.h +$(DESTDIR)\include\afs\bc.h: bc.h + ############################################################################ # build afsbxdb.lib @@ -122,6 +124,9 @@ install: $(INCFILES) $(LIBFILE) $(EXEFILE) # Local clean target; augments predefined clean target clean:: + $(DEL) $(INCFILES) + $(DEL) $(LIBFILE) + $(DEL) $(EXEFILE) $(DEL) bc.h bucoord_errs.c $(DEL) $(EXERES) $(DEL) AFS_component_version_number.h -- 2.39.5