mirror of
https://github.com/revyos/th1520-npu.git
synced 2026-06-21 09:02:38 +02:00
15 lines
279 B
Makefile
Executable File
15 lines
279 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
export DH_VERBOSE = 1
|
|
export DESTDIR = debian/th1520-npu
|
|
export DEB_BUILD_OPTIONS += nostrip
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
mkdir -p $(CURDIR)/$(DESTDIR)$(PREFIX)/
|
|
cp -avpr $(CURDIR)/addons/* $(CURDIR)/$(DESTDIR)$(PREFIX)/
|
|
|
|
override_dh_clean:
|
|
echo "None"
|