StupidOS/include/Makefile
d0p1 🏳️‍⚧️ 03c95cb0a4
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
chore: add 'coff.h' header
2024-03-20 16:51:27 +01:00

17 lines
192 B
Makefile

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