1
0
mirror of https://github.com/pfusik/xasm.git synced 2024-06-11 23:29:28 +00:00
xasm/Makefile

20 lines
385 B
Makefile
Raw Normal View History

2013-10-02 11:16:42 +00:00
VERSION = 3.1.0
2009-10-17 19:47:06 +00:00
all: xasm.exe xasm.html
xasm.exe: xasm.d
dmd -O -release $<
xasm.html: xasm.1.txt
2013-10-02 11:16:42 +00:00
asciidoc -o - -d manpage $< | sed -e "s/527bbd;/20a0a0;/" >$@
2009-10-17 19:47:06 +00:00
xasm-$(VERSION)-windows.zip: xasm.exe xasm.html xasm.properties
2013-10-02 11:16:42 +00:00
rm -f $@ && 7z a -mx=9 -tzip $@ $^
2009-10-17 19:47:06 +00:00
clean:
2013-10-02 11:16:42 +00:00
$(RM) xasm-$(VERSION)-windows.zip xasm.exe xasm.html
.PHONY: all clean
2009-10-17 19:47:06 +00:00
.DELETE_ON_ERROR: