18 lines
200 B
Makefile
18 lines
200 B
Makefile
|
|
SYMSRCS=$(wildcard *.s)
|
|
OBJS=$(SYMSRCS:.s=.o)
|
|
PROGS=$(SYMSRCS:.s=)
|
|
|
|
.SUFFIXES:
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(OBJS) $(PROGS)
|
|
|
|
%.o: %.s $(wildcard include/*.s)
|
|
as -g $< -o $@
|
|
|
|
%: %.o
|
|
ld $@.o -o $@
|