cos2000v1/lib/makefile

15 lines
159 B
Makefile
Raw Permalink Normal View History

2019-07-09 18:30:00 +02:00
ASM=fasm
CLEAN=rm -rf
OBJS= $(SRCS:.c=.o)
SRC= $(wildcard *.asm)
LIB= $(SRC:.asm=.lib)
2019-07-09 18:30:00 +02:00
all: $(LIB)
sync
2019-07-09 18:30:00 +02:00
%.lib: %.asm
$(ASM) $^ $@
clean:
2019-07-09 18:30:00 +02:00
$(CLEAN) *.lib