Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initial commit
[erase-mbr.git] / Makefile
1 ASM = $(wildcard *.s)
2 OBJ = $(ASM:%.s=%.o)
3 SYM = $(ASM:%.s=%.sym)
4
5 .PHONY: all clean
6
7 all: $(OBJ)
8
9 clean:
10         $(RM) $(OBJ) $(SYM)
11
12 %.o: %.s
13         as86 -w- -b $@ -s $*.sym $<
14