mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 12:36:09 -07:00
17 lines
351 B
Makefile
Executable file
17 lines
351 B
Makefile
Executable file
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = \
|
|
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
|
|
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
@PACKAGE_CFLAGS@
|
|
|
|
bin_PROGRAMS = xhydra
|
|
|
|
xhydra_SOURCES = \
|
|
main.c \
|
|
support.c support.h \
|
|
interface.c interface.h \
|
|
callbacks.c callbacks.h
|
|
|
|
xhydra_LDADD = @PACKAGE_LIBS@
|
|
|