1
0
mirror of https://github.com/pfusik/xasm.git synced 2024-06-01 01:41:29 +00:00
xasm/Makefile
2013-10-02 13:24:57 +02:00

23 lines
448 B
Makefile

VERSION = 3.1.0
all: xasm xasm.html
xasm: xasm.d
dmd -O -release $<
xasm.html: xasm.1.txt
asciidoc -o - $< | sed -e "s/527bbd;/20a0a0;/" >$@
xasm.1: xasm.1.txt
a2x -f manpage $<
xasm-$(VERSION)-windows.zip: xasm xasm.html xasm.properties
$(RM) $@ && 7z a -mx=9 -tzip $@ xasm.exe xasm.html xasm.properties
clean:
$(RM) xasm-$(VERSION)-windows.zip xasm xasm.exe xasm.html xasm.1
.PHONY: all clean
.DELETE_ON_ERROR: