all:
	gcc -c asma.s

test: all
	gcc -c -ansi -pedantic -Wall asma-test.c
	gcc -o test asma.o asma-test.o

clean:
	rm -rf asma.o test asma-test.o


