blob: 8cc8bfd8cf8410beb880a0a24631560e9349efda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.PHONY: clean, mrproper
ASM = nasm
Applications = test
all: $(Applications)
echo "* Done with ASM applications : $(Applications)"
rebuild: mrproper all
%: %.asm
echo "* Compiling $<..."
$(ASM) -o $@ $<
clean:
echo "* Removing files..."
rm -rf $(Applications)
mrproper: clean
|