rearranged repository structure for tools

fdfool and hunktools now under utils
This commit is contained in:
Wei-ju Wu 2016-01-27 12:58:24 -08:00
parent 7fad06a6fb
commit 23379213dd
9 changed files with 3 additions and 2 deletions

View File

@ -1,13 +1,14 @@
ASM_FLAGS = -Fhunk -devpac -I/home/weiju/Development/NDK_3.9/Include/include_i
ASM = vasmm68k_mot
.SUFFIXES : .o .asm
PROGRAMS = test1 hello test2 mouse raster1 raster2
all: test1 hello test2 mouse raster1 raster2
all: $(PROGRAMS)
.asm.o:
$(ASM) $(ASM_FLAGS) -o $@ $<
clean:
rm -f test1 test2 hello mouse *.o
rm -f $(PROGRAMS) *.o
test1: test1.o
vlink -bamigahunk -o $@ -s $<