13706d1bde
git-svn-id: file:///home/svn/framework3/trunk@6353 4d416f70-5f16-0410-b530-b9f4589650da
13 lines
208 B
Makefile
13 lines
208 B
Makefile
BINS=$(subst src/,,$(patsubst %.s,%.bin,$(wildcard src/s*.s)))
|
|
|
|
all: $(BINS)
|
|
|
|
%.bin: src/%.s
|
|
nasm -Iinclude/ -f bin -o bin/$@ $<
|
|
|
|
test: all
|
|
make -C src/test
|
|
|
|
clean:
|
|
rm -f bin/*.bin; make -C src/test clean
|