You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
15 years ago
|
## Makefile.am for embedjs
|
||
|
|
||
|
# this is the program that gets installed. it's name is used for all
|
||
|
# of the other Makefile.am variables
|
||
|
bin_PROGRAMS = embedjs
|
||
|
|
||
|
# set the include path for X, qt and KDE
|
||
|
INCLUDES = -I$(top_srcdir) $(all_includes)
|
||
|
|
||
|
# the library search path.
|
||
|
embedjs_LDFLAGS = $(KDE_RPATH) $(all_libraries)
|
||
|
|
||
|
# the libraries to link against.
|
||
|
embedjs_LDADD = $(LIB_KFILE) $(LIB_KDEPRINT) -lkjs $(top_builddir)/kjsembed/libkjsembed.la
|
||
|
|
||
|
# which sources should be compiled for embedjs
|
||
|
embedjs_SOURCES = main.cpp embedview.ui embedviewimp.cpp
|
||
|
|
||
|
# these are the headers for your project
|
||
|
|
||
|
|
||
|
# client stuff
|
||
|
|
||
|
# let automoc handle all of the meta source files (moc)
|
||
|
METASOURCES = AUTO
|
||
|
|
||
|
messages: rc.cpp
|
||
|
$(XGETTEXT) *.cpp -o $(podir)/embedjs.pot
|
||
|
|
||
|
KDE_ICON = embedjs
|
||
|
|
||
|
# this is where the kdelnk file will go
|
||
|
kdelnkdir = $(kde_appsdir)/Utilities
|
||
|
kdelnk_DATA = embedjs.desktop
|
||
|
|
||
|
# this is where the XML-GUI resource file goes
|
||
|
rcdir = $(kde_datadir)/embedjs
|
||
|
rc_DATA = embedjsui.rc
|
||
|
noinst_HEADERS = embedviewimp.h
|
||
|
noinst_DATA = test.js
|