diff options
author | Matthew Newhook <matthew@zeroc.com> | 2001-12-10 20:39:08 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2001-12-10 20:39:08 +0000 |
commit | 2dfa1c469cd4d24c388c9cf51a7f7e2087a9fe11 (patch) | |
tree | dd72f84fb7783cc7749b435a91299e88b0ad066c /cpp | |
parent | changes (diff) | |
download | ice-2dfa1c469cd4d24c388c9cf51a7f7e2087a9fe11.tar.bz2 ice-2dfa1c469cd4d24c388c9cf51a7f7e2087a9fe11.tar.xz ice-2dfa1c469cd4d24c388c9cf51a7f7e2087a9fe11.zip |
Fix Makefile bug.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/IceStorm/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cpp/src/IceStorm/Makefile b/cpp/src/IceStorm/Makefile index f328abc62d6..2dd6efe8538 100644 --- a/cpp/src/IceStorm/Makefile +++ b/cpp/src/IceStorm/Makefile @@ -71,10 +71,16 @@ $(HDIR)/IceStorm.h IceStorm.cpp: $(SDIR)/IceStorm.ice $(SLICE2CPP) $(SLICECMD) $(SDIR)/IceStorm.ice mv IceStorm.h $(HDIR) +clean:: + rm -f $(HDIR)/IceStorm.h IceStorm.cpp + StringBoolDict.h StringBoolDict.cpp: $(SLICE2FREEZE) rm -f StringBoolDict.h StringBoolDict.cpp $(SLICE2FREEZECMD) --dict IceStorm::StringBoolDict,string,bool StringBoolDict +clean:: + rm -f StringBoolDict.h StringBoolDict.cpp + Grammar.cpp Grammar.h: Grammar.y bison -dvt Grammar.y rm -f Grammar.cpp ; mv Grammar.tab.c Grammar.cpp @@ -88,7 +94,4 @@ clean:: -rm -f Grammar.cpp Grammar.h Grammar.output -rm -f Scanner.cpp lex.yy.c -clean:: - rm -f $(HDIR)/Clock.h Clock.cpp - include .depend |