StupidOS/include/Makefile

15 lines
179 B
Makefile
Raw Normal View History

2024-03-20 15:51:27 +00:00
INCS = coff.h
.PHONY: all
all:
.PHONY: clean
clean:
.PHONY: install
install: $(INCS)
2024-03-26 09:04:06 +00:00
@ mkdir -p $(DESTDIR)$(INCDIR)
install $< $(DESTDIR)$(INCDIR)
2024-03-20 15:51:27 +00:00
.PHONY: all clean install