aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark E. Shoulson <mark@kli.org>2020-05-26 09:26:32 -0400
committerMark E. Shoulson <mark@kli.org>2021-07-20 15:13:33 -0400
commita9eb4a76b562cb63e619fd64bb56dcf88796e3a4 (patch)
treea5ffed1646594f409d5933f0e010684252e8a1c6 /Makefile
parentFixed some .py utils to use python3; added a few chars. (diff)
parentFixed some .py utils to use python3; added a few chars. (diff)
downloaddotXCompose-a9eb4a76b562cb63e619fd64bb56dcf88796e3a4.tar.gz
dotXCompose-a9eb4a76b562cb63e619fd64bb56dcf88796e3a4.tar.bz2
dotXCompose-a9eb4a76b562cb63e619fd64bb56dcf88796e3a4.zip
Merge branch 'master'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 48602d3..80ed052 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,8 @@
-all: emoji.compose modletters.compose tags.compose maths.compose
+COMPOSED=emoji.compose modletters.compose tags.compose maths.compose
+all: $(COMPOSED)
%.compose: %-base emojitrans2.pl
./emojitrans2.pl < $< > $@
+
+clean:
+ rm -f $(COMPOSED)