d0p1
03c95cb0a4
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
16 lines
192 B
Makefile
16 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
|