X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=Makefile;h=1afaa7730875119da93f83a4051bcd1555bf536c;hb=7ab8606c3d22a2bc2743eae7a398407c84d502f2;hp=e0d65c9480d1637674aec983feb413e9cf5aaf78;hpb=7df511557f1e750bac4b45847f65e1e51aabdf54;p=mTask.git diff --git a/Makefile b/Makefile index e0d65c9..1afaa77 100644 --- a/Makefile +++ b/Makefile @@ -19,9 +19,9 @@ CLMLIBS:=\ -I $(CLEAN_HOME)/lib/TCPIP\ -I ./CleanSerial -BINARIES:= miTask mTaskExamples mTaskInterpret +BINARIES:= mTaskInterpret miTask # mTaskExamples -all: CleanSerial/Clean\ System\ Files/TTY.o $(BINARIES) client/mTaskSymbols.h +all: CleanSerial/Clean\ System\ Files/TTY.o $(BINARIES) #client/mTaskSymbols.h mkdir -p miTask-www find $(CLEAN_HOME)/lib -path '*/WebPublic/*' -not -path '*/CodeMirror/*' -execdir cp -nR {} "$$PWD"/miTask-www/ \; @@ -29,11 +29,13 @@ CleanSerial/Clean\ System\ Files/TTY.o: make -C CleanSerial client/mTaskSymbols.h: mTaskMakeSymbols + mkdir -p client ./$< -nr > $@ -%: %.icl $(wildcard *.[id]cl) +%: %.icl $(wildcard */*.[id]cl *.[id]cl) $(CLM) $(CLMLIBS) $(CLMFLAGS) $(basename $<) -o $@ clean: $(RM) -r $(BINARIES) Clean\ System\ Files miTask-data miTask-www + find . -type d -name 'Clean System Files' -print0 | xargs -r0 rm -r make -C CleanSerial clean