StupidOS/modules/dummy/Makefile

14 lines
159 B
Makefile
Raw Permalink Normal View History

2024-07-08 07:03:39 +00:00
MODULE = dummy.mod
all:
clean:
$(MODULE): $(MODULE:.mod=.asm)
fasm $^ $@
.PHONY: install
install: $(MODULE)
@ mkdir -p $(DESTDIR)
install $< $(DESTDIR)