mirror of
https://github.com/weiju/amiga-stuff
synced 2026-09-14 04:30:55 +00:00
added assembler targets to makefile and added Racket version of fdtool
This commit is contained in:
+8
-2
@@ -1,10 +1,10 @@
|
||||
ASM_FLAGS = -Fhunk -devpac -I/home/weiju/Development/NDK_3.9/Include/include_i
|
||||
ASM = vasmm68k_mot
|
||||
|
||||
all: test1 hello
|
||||
all: test1 hello test2
|
||||
|
||||
clean:
|
||||
rm -f test1 hello *.o
|
||||
rm -f test1 test2 hello *.o
|
||||
|
||||
test1: test1.o
|
||||
vlink -bamigahunk -o test1 -s test1.o
|
||||
@@ -12,6 +12,12 @@ test1: test1.o
|
||||
test1.o: test1.asm
|
||||
$(ASM) $(ASM_FLAGS) -o test1.o test1.asm
|
||||
|
||||
test2: test2.o
|
||||
vlink -bamigahunk -o test2 -s test2.o
|
||||
|
||||
test2.o: test2.asm
|
||||
$(ASM) $(ASM_FLAGS) -o test2.o test2.asm
|
||||
|
||||
hello: hello.o
|
||||
vlink -bamigahunk -o hello -s hello.o
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
#lang racket
|
||||
has#lang racket
|
||||
;; This is the Racket version of fdtool.py
|
||||
;; Writing the tool in a Lisp makes is easier to run it on
|
||||
;; a classic Amiga
|
||||
|
||||
Reference in New Issue
Block a user