mirror of
https://codeberg.org/cage/tinmop/
synced 2024-12-18 23:22:52 +01:00
20 lines
383 B
Makefile
Executable File
20 lines
383 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# See debhelper(7) (uncomment to enable).
|
|
# Output every command that modifies files on the build system.
|
|
export DH_VERBOSE = 1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_strip:
|
|
echo "Skipping stripping of executable."
|
|
|
|
override_dh_auto_build:
|
|
make
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure
|
|
./configure --prefix=/usr/
|
|
bash quick_quicklisp.sh --proxy http://localhost:8080
|