cos2000v1/programs/makefile

15 lines
158 B
Makefile
Raw Normal View History

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