diff options
Diffstat (limited to 'netsvcs/clients/Naming/Dump_Restore/Makefile')
-rw-r--r-- | netsvcs/clients/Naming/Dump_Restore/Makefile | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/netsvcs/clients/Naming/Dump_Restore/Makefile b/netsvcs/clients/Naming/Dump_Restore/Makefile deleted file mode 100644 index a4a0693eb23..00000000000 --- a/netsvcs/clients/Naming/Dump_Restore/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -#---------------------------------------------------------------------------- -# $Id$ -# -# Makefile for a test of the Dump_Restore lib -#---------------------------------------------------------------------------- - -#---------------------------------------------------------------------------- -# Local macros -#---------------------------------------------------------------------------- - -#---------------------------------------------------------------------------- -# Local macros -#---------------------------------------------------------------------------- -MAKEFILE=Makefile - -# These examples don't require SSL support... those that do are below. -MKLIST = Makefile.Dump_Restore \ - Makefile.main - - -## Ensure that Makefiles in MKLIST are executed in sequence during a -## parallel build because we share some files between multiple libraries. -.NOTPARALLEL: - -## Makefile.Timer.mkfile is a dummy target which will cause -## $(MAKE) -f Makefile.Timer to be invoked, then it cleans -## up tempinc when needed for AIX Visual Age C++. -%.mkfile: % - @echo $(MAKE) -f $< $(MKFILE_TARGET) - @$(MAKE) -f $< $(MKFILE_TARGET) - -@$(RM) -rf tempinc - -# This rule invokes make again with the list of .mkfile targets as a -# parameter. For example, if the all target is being made, make is invoked -# as follows: -# -# make -f Makefile MKFILE_TARGET=all Makefile.Reactive_Logging_Server_Ex - -all clean depend realclean: -ifneq ($(MKLIST),) - @echo $(MAKE) -f $(MAKEFILE) MKFILE_TARGET=$@ $(addsuffix .mkfile, $(MKLIST)) - @$(MAKE) -f $(MAKEFILE) MKFILE_TARGET=$@ $(addsuffix .mkfile, $(MKLIST)) -endif - -# DO NOT DELETE THIS LINE -- g++dep uses it. -# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. - -# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |