d0p1
0365dd5da5
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
14 lines
159 B
Makefile
14 lines
159 B
Makefile
INCS = coff.h
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
.PHONY: install
|
|
install: $(INCS)
|
|
@ mkdir -p $(INCDIR)
|
|
install $< $(INCDIR)
|
|
|
|
.PHONY: all clean install
|