Introduce DUB.

This commit is contained in:
Piotr Fusik 2019-10-06 17:00:48 +02:00
parent ce134af833
commit 110d2c4dad
5 changed files with 10 additions and 2 deletions

1
.gitignore vendored
View File

@ -4,4 +4,5 @@
/xasm.html
/xasm.1
/MANIFEST
/.dub
/.project

1
.travis.yml Normal file
View File

@ -0,0 +1 @@
language: d

View File

@ -8,7 +8,7 @@ SEVENZIP = 7z a -mx=9 -bd
all: xasm xasm.html
xasm: xasm.d
xasm: source/xasm.d
dmd -of$@ -O -release $<
xasm.html: xasm.1.asciidoc
@ -49,7 +49,7 @@ 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.d
osx/xasm: source/xasm.d
mkdir -p osx && dmd -of$@ -O -release -m32 -L-macosx_version_min -L10.6 $< && rm -f osx/xasm.o
osx/bin:

6
dub.sdl Normal file
View File

@ -0,0 +1,6 @@
name "xasm"
description "6502 cross-assembler with original syntax extensions"
authors "Piotr Fusik"
copyright "Copyright © 1998-2019, Piotr Fusik"
license "poetic"
targetType "executable"