summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-12-28 07:07:59 -0800
committerKaz Kylheku <kaz@kylheku.com>2023-12-28 07:07:59 -0800
commitdd9398ff7d4776aa67951800aeb402a94d42f50f (patch)
tree7183f9d9011ad2d341d10f85fb51b5dcb0eeb195 /Makefile
parent07912e6dd718e22b318eaa7d7c3793f6c86ea40d (diff)
downloadtxr-dd9398ff7d4776aa67951800aeb402a94d42f50f.tar.gz
txr-dd9398ff7d4776aa67951800aeb402a94d42f50f.tar.bz2
txr-dd9398ff7d4776aa67951800aeb402a94d42f50f.zip
build: automate clean-up of shipped scanner and parser
* Makefile (shipped): Copy the shipped materials unconditionally, rather than checking if they are different. If a patch exists for a shipped file, then apply it. * lex.yy.c.shipped, y.tab.c.shipped: Updated. * lex.yy.c.patch, y.tab.c.patch: New files.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cb24327f..e3f40c99 100644
--- a/Makefile
+++ b/Makefile
@@ -283,10 +283,9 @@ lex.yy.c: $(top_srcdir)parser.l
shipped:
$(V)$(foreach NAME,$(SHIPPED), \
- if ! cmp -s $(NAME) $(NAME).shipped; then \
$(call ABBREV3SH,COPY,$(NAME).shipped,$(NAME)); \
cp $(NAME) $(NAME).shipped; \
- fi;)
+ [ -e $(NAME).patch ] && patch < $(NAME).patch || true;)
else