X-Git-Url: http://git.shiar.net/netris.git/blobdiff_plain/ae37c04c146c531a475aafa0ec96ec011fe32e22..1e9c326b7848ac4b08a1fec5116c33125890a0a0:/Makefile diff --git a/Makefile b/Makefile index 0baead2..389503b 100644 --- a/Makefile +++ b/Makefile @@ -20,10 +20,22 @@ DISTFILES = README FAQ INSTALL COPYING TODO CHANGES \ all: Makefile config.h $(PROG) $(SPROG) -$(PROG): $(OBJS) +msg.h: msg.en.h $(MSG_FILE) + @echo "Linking $(MSG_FILE) to msg.h" + @echo '// WARNING! This is a generated file. Do NOT edit.' > msg.h + @echo '// See msg.*.h for the editable files.' >> msg.h + @echo '#include "$(MSG_FILE)"' >> msg.h + +ifneq ($(MSG_FILE),msg.en.h) + @echo "Adding untranslated messages to msg.h" + @echo '// untranslated messages from the English master file:' >> msg.h + @./msg_diff.sh $(MSG_FILE) < msg.en.h >> msg.h +endif + +$(PROG): msg.h $(OBJS) $(CC) -o $(PROG) $(OBJS) $(LFLAGS) $(CFLAGS) -$(SPROG): $(SOBJS) +$(SPROG): msg.h $(SOBJS) $(CC) -o $(SPROG) $(SOBJS) $(LFLAGS) $(CFLAGS) .c.o: @@ -47,7 +59,7 @@ dist: $(DISTFILES) tar -cvzof $$dir.tar.gz $$dir clean: - rm -f $(PROG) $(OBJS) $(SPROG) $(SOBJS) a.out + rm -f $(PROG) $(OBJS) $(SPROG) $(SOBJS) msg.h a.out cleandir: clean rm -f config.mak config.h