diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-31 03:44:47 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-31 03:44:47 +0000 |
commit | fa426bc7356cc0fdae8694f717353056a9339284 (patch) | |
tree | cdbd5b0690b490568235ced12861dadf7c1f3503 /examples/Naming | |
parent | bf38919ce925bc3e93510adf245deb200401ef0f (diff) | |
download | ATCD-fa426bc7356cc0fdae8694f717353056a9339284.tar.gz |
*** empty log message ***
Diffstat (limited to 'examples/Naming')
-rw-r--r-- | examples/Naming/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/examples/Naming/Makefile b/examples/Naming/Makefile new file mode 100644 index 00000000000..bdc63861618 --- /dev/null +++ b/examples/Naming/Makefile @@ -0,0 +1,48 @@ +#---------------------------------------------------------------------------- +# @(#)Makefile 1.1 10/18/96 +# +# Makefile for tests of the Shared_Malloc wrappers +#---------------------------------------------------------------------------- + +#---------------------------------------------------------------------------- +# Local macros +#---------------------------------------------------------------------------- + +BIN = test_non_existent \ + test_writers \ + test_multiple_contexts + +LSRC = $(addsuffix .cpp,$(FILES)) +LOBJ = $(addsuffix .o,$(FILES)) +SHOBJ = $(addsuffix .so,$(FILES)) + +LDLIBS = $(addprefix .shobj/,$(SHOBJ)) + +VLDLIBS = $(LDLIBS:%=%$(VAR)) + +BUILD = $(VBIN) + +#---------------------------------------------------------------------------- +# Include macros and targets +#---------------------------------------------------------------------------- + +include $(WRAPPER_ROOT)/include/makeinclude/wrapper_macros.GNU +include $(WRAPPER_ROOT)/include/makeinclude/macros.GNU +include $(WRAPPER_ROOT)/include/makeinclude/rules.common.GNU +include $(WRAPPER_ROOT)/include/makeinclude/rules.nonested.GNU +include $(WRAPPER_ROOT)/include/makeinclude/rules.lib.GNU +include $(WRAPPER_ROOT)/include/makeinclude/rules.bin.GNU +include $(WRAPPER_ROOT)/include/makeinclude/rules.local.GNU + +#---------------------------------------------------------------------------- +# Local targets +#---------------------------------------------------------------------------- + +#---------------------------------------------------------------------------- +# Dependencies +#---------------------------------------------------------------------------- + +# 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 |