mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-04-28 19:13:42 +00:00
Add Makefile to support packaging this within Clearlinux Signed-off-by: Manohar Castelino <manohar.r.castelino@intel.com>
10 lines
208 B
Makefile
10 lines
208 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/
|