go-vise

Constrained Size Output Virtual Machine
Info | Log | Files | Refs | README | LICENSE

Makefile (248B)


      1 INPUTS = $(wildcard ./*.vis)
      2 TXTS = $(wildcard ./*.txt.orig)
      3 
      4 %.vis:
      5 	go run ../../dev/asm $(basename $@).vis > $(basename $@).bin
      6 	go run ../../dev/dbconvert/main.go .
      7 
      8 all: $(INPUTS) $(TXTS)
      9 
     10 %.txt.orig:
     11 	cp -v $(basename $@).orig $(basename $@)