summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Compose/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Compose/Makefile b/Compose/Makefile
index 364964f..8dcd057 100644
--- a/Compose/Makefile
+++ b/Compose/Makefile
@@ -25,15 +25,17 @@ all : $(addprefix XCompose_, $(DEFAULTS))
XCompose%: FORCE
@echo Creating file $@
- @echo -e "#\n# Automatically generated file. Do not edit.\n#" >$@ ;\
+ @echo "#" >$@ ;\
+ @echo "# Automatically generated file. Do not edit." >$@ ;\
+ @echo "#" >$@ ;\
for i in \
`echo $@ | sed -e 's/XCompose//;s/_/ /g'`;\
do \
export fn=$(SRC)/$$i.module;\
if [ -e $$fn ]; then \
- echo -e "\n#\n# begin include module $$i\n#\n" >>$@ ;\
+ echo "# begin include module $$i" >>$@ ;\
cat $$fn >>$@ ;\
- echo -e "\n#\n# end include module $$i\n#\n" >>$@ ;\
+ echo "# end include module $$i" >>$@ ;\
else \
echo "*** Warning: file $$fn not found";\
fi \