uskel/Makefile
2023-10-31 21:55:26 +01:00

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 $@