StupidOS/include/Makefile
d0p1 🏳️‍⚧️ 0666a769d3
Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
build: fix missing DESTDIR
2024-03-26 10:04:06 +01:00

15 lines
179 B
Makefile

INCS = coff.h
.PHONY: all
all:
.PHONY: clean
clean:
.PHONY: install
install: $(INCS)
@ mkdir -p $(DESTDIR)$(INCDIR)
install $< $(DESTDIR)$(INCDIR)
.PHONY: all clean install