diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-23 17:40:54 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-23 17:40:54 +0000 |
commit | 77da583b5684613436a3c44232456848fcbce33b (patch) | |
tree | 1c240d6f9cd85f731ad637f066335801bce87e35 /TAO/TAO_IDL/Makefile | |
parent | 83fe927d027bd84fba745ce613f06da0ea3ca4f7 (diff) | |
download | ATCD-77da583b5684613436a3c44232456848fcbce33b.tar.gz |
added clean and realclean targets for CROSS-COMPILE platforms
Diffstat (limited to 'TAO/TAO_IDL/Makefile')
-rw-r--r-- | TAO/TAO_IDL/Makefile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/TAO/TAO_IDL/Makefile b/TAO/TAO_IDL/Makefile index c666586dd64..200b00ab21a 100644 --- a/TAO/TAO_IDL/Makefile +++ b/TAO/TAO_IDL/Makefile @@ -33,19 +33,22 @@ endif # ! CROSS-COMPILE # Local targets #---------------------------------------------------------------------------- -ifndef CROSS-COMPILE -IDL_CFE_VERSION = \"1.3.0\" -CPPFLAGS += -Iinclude -Ibe_include -DCPP_LOCATION=\"$(CXX)\" \ - -DIDL_CFE_VERSION=$(IDL_CFE_VERSION) +ifdef CROSS-COMPILE + default_embedded: + @echo The IDL compiler won\'t run or build on CROSS-COMPILE platforms. -clean: + clean realclean: + @echo Nothing to clean in TAO_IDL on CROSS-COMPILE platforms. +else # ! CROSS-COMPILE + IDL_CFE_VERSION = \"1.3.0\" + CPPFLAGS += -Iinclude -Ibe_include -DCPP_LOCATION=\"$(CXX)\" \ + -DIDL_CFE_VERSION=$(IDL_CFE_VERSION) + + clean: rm -f tao_idl -realclean: + realclean: rm -f tao_idl TAGS -else - default_embedded: - @echo The IDL compiler won\'t run or build on CROSS-COMPILE platforms. endif # ! CROSS-COMPILE tags: |