mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-04-28 11:03:40 +00:00
10 lines
194 B
Makefile
10 lines
194 B
Makefile
DESTDIR ?= /
|
|
PREFIX ?= /usr
|
|
TARGET ?= $(PREFIX)/share/
|
|
|
|
all:
|
|
|
|
install:
|
|
install -m 0755 -d $(DESTDIR)/$(TARGET)/clr-k8s-examples
|
|
cp -r clr-k8s-examples/* $(DESTDIR)/$(TARGET)/clr-k8s-examples/
|