1
0
mirror of https://github.com/pfusik/xasm.git synced 2026-04-20 19:16:33 +00:00

Fix "dub test".

This commit is contained in:
Piotr Fusik
2019-10-06 17:07:42 +02:00
parent 110d2c4dad
commit cb92f715a9
4 changed files with 3 additions and 3 deletions
+1
View File
@@ -3,6 +3,7 @@
/xasm.obj
/xasm.html
/xasm.1
/xasm-test-*
/MANIFEST
/.dub
/.project
+2 -2
View File
@@ -8,7 +8,7 @@ SEVENZIP = 7z a -mx=9 -bd
all: xasm xasm.html
xasm: source/xasm.d
xasm: source/app.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: source/xasm.d
osx/xasm: source/app.d
mkdir -p osx && dmd -of$@ -O -release -m32 -L-macosx_version_min -L10.6 $< && rm -f osx/xasm.o
osx/bin:
-1
View File
@@ -3,4 +3,3 @@ description "6502 cross-assembler with original syntax extensions"
authors "Piotr Fusik"
copyright "Copyright © 1998-2019, Piotr Fusik"
license "poetic"
targetType "executable"
View File