mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
20 lines
396 B
Makefile
Executable file
20 lines
396 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
# the mysqld library is not much of a static
|
|
dh_auto_configure -- -DMYSQL_LIBRARIES:STRING="-lmysqld -lcrypt -laio" \
|
|
-Wno-dev \
|
|
-DKATIE_LDCONF_FULL=/etc/ld.so.conf.d \
|
|
-DKATIE_PROFILE_FULL=/etc/profile.d
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|