diff options
author | Lars Thorsen <lars@erlang.org> | 2011-10-12 10:27:12 +0200 |
---|---|---|
committer | Björn Gustavsson <bjorn@erlang.org> | 2011-10-12 10:31:12 +0200 |
commit | 1c52cfa3b8cbc6e8650444ff10bab827965aa4ec (patch) | |
tree | f2f68b92f78fdee27c493fd16f5e9fbd71771670 /lib/cosNotification | |
parent | 199248be0ce5f5d147689b9608aa52e981c407ef (diff) | |
download | erlang-1c52cfa3b8cbc6e8650444ff10bab827965aa4ec.tar.gz |
corba applications: Fix broken 'make clean'
The IDL-GENERATED files must be removed too; otherwise the target
files will not be made the next time 'make' is invoked.
Diffstat (limited to 'lib/cosNotification')
-rw-r--r-- | lib/cosNotification/src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cosNotification/src/Makefile b/lib/cosNotification/src/Makefile index b976ab94f3..be52d1a06f 100644 --- a/lib/cosNotification/src/Makefile +++ b/lib/cosNotification/src/Makefile @@ -328,7 +328,7 @@ cleanb: rm -f errs core *~ clean: - rm -f $(TARGET_FILES) $(GEN_FILES) $(APP_TARGET) $(APPUP_TARGET) + rm -f $(TARGET_FILES) $(GEN_FILES) $(APP_TARGET) $(APPUP_TARGET) IDL-GENERATED rm -f errs core *~ $(APP_TARGET): $(APP_SRC) |