mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-21 09:19:45 +00:00
rearranged repository structure for tools
fdfool and hunktools now under utils
This commit is contained in:
@ -1,13 +1,14 @@
|
|||||||
ASM_FLAGS = -Fhunk -devpac -I/home/weiju/Development/NDK_3.9/Include/include_i
|
ASM_FLAGS = -Fhunk -devpac -I/home/weiju/Development/NDK_3.9/Include/include_i
|
||||||
ASM = vasmm68k_mot
|
ASM = vasmm68k_mot
|
||||||
.SUFFIXES : .o .asm
|
.SUFFIXES : .o .asm
|
||||||
|
PROGRAMS = test1 hello test2 mouse raster1 raster2
|
||||||
|
|
||||||
all: test1 hello test2 mouse raster1 raster2
|
all: $(PROGRAMS)
|
||||||
|
|
||||||
.asm.o:
|
.asm.o:
|
||||||
$(ASM) $(ASM_FLAGS) -o $@ $<
|
$(ASM) $(ASM_FLAGS) -o $@ $<
|
||||||
clean:
|
clean:
|
||||||
rm -f test1 test2 hello mouse *.o
|
rm -f $(PROGRAMS) *.o
|
||||||
|
|
||||||
test1: test1.o
|
test1: test1.o
|
||||||
vlink -bamigahunk -o $@ -s $<
|
vlink -bamigahunk -o $@ -s $<
|
||||||
|
|||||||
Reference in New Issue
Block a user