mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
12 lines
265 B
Makefile
12 lines
265 B
Makefile
|
|
INCLUDE_DFILES = Makefile xmp.h
|
|
|
|
INCLUDE_PATH = include/libxmp-lite
|
|
|
|
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)
|
|
|