StupidOS/include/Makefile

17 lines
192 B
Makefile
Raw Normal View History

2024-03-20 15:51:27 +00:00
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