You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
704 B
42 lines
704 B
15 years ago
|
##
|
||
|
AM_CXXFALGS = -fno-rtti -fno-exceptions
|
||
|
|
||
|
#CXXFLAGS = -fno-rtti -fno-exceptions
|
||
|
|
||
|
bin_PROGRAMS = lisa reslisa
|
||
|
#
|
||
|
# Programs to compile, Manpages to install and Versions
|
||
|
#
|
||
|
#INCLUDES = $(all_includes)
|
||
|
|
||
|
lisa_SOURCES = \
|
||
|
addressvalidator.cpp \
|
||
|
netmanager.cpp \
|
||
|
netscanner.cpp \
|
||
|
ipaddress.cpp \
|
||
|
main.cpp \
|
||
|
mystring.cpp \
|
||
|
client.cpp \
|
||
|
configfile.cpp
|
||
|
|
||
|
reslisa_SOURCES = \
|
||
|
addressvalidator.cpp \
|
||
|
netmanager.cpp \
|
||
|
netscanner.cpp \
|
||
|
ipaddress.cpp \
|
||
|
strictmain.cpp \
|
||
|
mystring.cpp \
|
||
|
client.cpp \
|
||
|
configfile.cpp
|
||
|
|
||
|
lisa_LDADD = $(LIBSOCKET)
|
||
|
lisa_LDFLAGS = $(KDE_EXTRA_RPATH)
|
||
|
|
||
|
reslisa_LDADD = $(LIBSOCKET)
|
||
|
reslisa_LDFLAGS = $(KDE_EXTRA_RPATH)
|
||
|
|
||
|
misc_DATA = README
|
||
|
miscdir = $(kde_datadir)/lisa
|
||
|
EXTRA_DIST=$(misc_DATA)
|
||
|
|