diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-01-20 14:53:53 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-01-20 14:53:53 +0000 |
commit | 44179f3311e9b3da31b7b69eabe3e71e7689a87b (patch) | |
tree | 997c7222254d7ca42f0ade071790756cd9baf836 /sysui/desktop/util | |
parent | effcf217d791a30d42bcca7d99d38526e56d91a7 (diff) |
INTEGRATION: CWS networker2 (1.3.54); FILE MERGED
2004/01/07 11:53:35 obr 1.3.54.4: #111798# added gnomeint script and no longer cut off the .sh due to name clashes
2003/12/18 09:24:59 obr 1.3.54.3: #111798# user space menu integration now done with shell scripts
2003/12/17 07:24:09 obr 1.3.54.2: #111798# replacing setup basic scripts with unix shell scripts
2003/12/10 12:44:01 obr 1.3.54.1: #i22671#,#i11438# replace functionality of libregmimetypes with shell scripts
Diffstat (limited to 'sysui/desktop/util')
-rw-r--r-- | sysui/desktop/util/makefile.mk | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/sysui/desktop/util/makefile.mk b/sysui/desktop/util/makefile.mk index fbc9d50e1f34..fdd11fcf32d4 100644 --- a/sysui/desktop/util/makefile.mk +++ b/sysui/desktop/util/makefile.mk @@ -70,8 +70,8 @@ TARGET=launcher ZIPFLAGS= -u -r ZIP1TARGET = kdeapp -ZIP1LIST = * .directory -ZIP1DIR = $(MISC)$/kde/share/applnk/OpenOffice.org +ZIP1LIST = share/applnk/* +ZIP1DIR = $(MISC)$/kde ZIP2TARGET = kdemime ZIP2LIST = share/mimelnk/* @@ -81,6 +81,22 @@ ZIP3TARGET = gnome2apps ZIP3LIST = *.desktop ZIP3DIR = $(MISC)$/gnome +SCRIPTS= \ + $(BIN)$/update-user-mime-data.sh \ + $(BIN)$/update-redhat-user-menus.sh \ + $(BIN)$/update-suse-user-menus.sh \ + $(BIN)$/update-user-menus.sh \ + $(BIN)$/functions.sh \ + $(BIN)$/gnomeint.sh \ + $(BIN)$/viewdoc.sh + # --- Targets ------------------------------------------------------ .INCLUDE : target.mk + +ALLTAR: $(SCRIPTS) + +$(SCRIPTS) : $$(@:f) + +@rm -f $@ 2>/dev/null + +@cat $(@:f) | tr -d "\015" > $@ + +@chmod 555 $@ |