Aligned the package layout with the concurrent Debian packaging conventions. Moved package files under 'debian/all/' to avoid duplication across OS builds and removed legacy paths under 'debian/'. Updated related build references to ensure compatibility across all supported OS codenames. Test-Plan: PASS: master bullseye build PASS: deploy AIO-SX Story: 2011360 Task: 53423 Change-Id: I5575f38194a1c09f1d2f7ded0862f96e1e6e1c74 Signed-off-by: sharang bhardwaj <sharang.bhardwaj@windriver.com>
18 lines
343 B
Makefile
Executable File
18 lines
343 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export ROOT = debian/tmp
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
install -d $(ROOT)/usr/bin
|
|
install -p memtop $(ROOT)/usr/bin
|
|
install -p schedtop $(ROOT)/usr/bin
|
|
install -p occtop $(ROOT)/usr/bin
|
|
install -p k8smetrics $(ROOT)/usr/bin
|
|
install -p portscanner $(ROOT)/usr/bin
|
|
install -p watchpids $(ROOT)/usr/bin
|
|
|
|
dh_install
|