mirror of
https://github.com/OldUnreal/libxmp.git
synced 2026-04-02 21:37:43 -07:00
13 lines
253 B
Makefile
13 lines
253 B
Makefile
|
|
INCLUDE_DFILES = Makefile xmp.h
|
|
|
|
INCLUDE_PATH = include
|
|
|
|
install-include:
|
|
$(INSTALL_DATA) xmp.h $(DESTDIR)$(INCLUDEDIR)
|
|
|
|
dist-include:
|
|
mkdir -p $(DIST)/$(INCLUDE_PATH)
|
|
cp -RPp $(addprefix $(INCLUDE_PATH)/,$(INCLUDE_DFILES)) $(DIST)/$(INCLUDE_PATH)
|
|
|