15 lines
242 B
Makefile
Executable File
15 lines
242 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
CFLAGS += -Wno-error=format-security
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
make -j1
|
|
|
|
override_dh_auto_install:
|
|
make -j1 PREFIX=/usr install DESTDIR=$$(pwd)/debian/galacticdynasty
|
|
|
|
override_dh_usrlocal:
|
|
echo "Ignoring..."
|