mirror of
https://github.com/pfusik/xasm.git
synced 2024-12-12 09:29:01 +00:00
Introduce DUB.
This commit is contained in:
parent
ce134af833
commit
110d2c4dad
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,4 +4,5 @@
|
||||
/xasm.html
|
||||
/xasm.1
|
||||
/MANIFEST
|
||||
/.dub
|
||||
/.project
|
||||
|
1
.travis.yml
Normal file
1
.travis.yml
Normal file
@ -0,0 +1 @@
|
||||
language: d
|
4
Makefile
4
Makefile
@ -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
6
dub.sdl
Normal 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"
|
Loading…
Reference in New Issue
Block a user