Initial commit.
[libmalice.git] / Makefile
1 NASMFLAGS = -f elf
2
3 all: libmalice.o
4
5 libmalice.o: libmalice.asm
6         nasm $(NASMFLAGS) -o $@ $<
7
8 .PHONY : clean
9 clean:
10         rm -f *.o
11
12 .PHONY : distclean
13 distclean: clean
14         rm -f *~
15
16 .PHONY : test
17 test: all