mirror of
https://github.com/pfusik/xasm.git
synced 2024-12-22 00:29:15 +00:00
35 lines
750 B
Makefile
35 lines
750 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
|
|
|
|
osx: xasm-$(VERSION)-osx.dmg
|
|
|
|
xasm-$(VERSION)-osx.dmg: osx/xasm osx/bin
|
|
hdiutil create -volname xasm-$(VERSION)-osx -srcfolder osx -imagekey zlib-level=9 -ov $@
|
|
|
|
osx/xasm: xasm
|
|
mkdir -p osx && cp $< $@
|
|
|
|
osx/bin:
|
|
mkdir -p osx && ln -s /usr/bin $@
|
|
|
|
clean:
|
|
$(RM) xasm xasm.exe xasm.html xasm.1 xasm-$(VERSION)-windows.zip xasm-$(VERSION)-osx.dmg
|
|
rm -rf osx
|
|
|
|
.PHONY: all osx clean
|
|
|
|
.DELETE_ON_ERROR:
|