diff options
author | Mathias Gumz <mathias gumz at gmail com> | 2014-04-11 15:42:09 (GMT) |
---|---|---|
committer | Mathias Gumz <mathias gumz at gmail com> | 2014-04-11 15:42:40 (GMT) |
commit | e105de7d46c4936790754857d8c789f3c7fccd87 (patch) | |
tree | caaf0481ae7d743507f67d7d4e3977f31b153f65 /util/fbrun | |
parent | bc272ba4aed707522cb458d659940567ac6fc386 (diff) | |
parent | 7541054b299bbd61310ab0456cf4f25b7a672de3 (diff) | |
download | fluxbox-e105de7d46c4936790754857d8c789f3c7fccd87.zip fluxbox-e105de7d46c4936790754857d8c789f3c7fccd87.tar.bz2 |
merge Sami Kerola's new build-system
Diffstat (limited to 'util/fbrun')
-rw-r--r-- | util/fbrun/FbRun.cc | 4 | ||||
-rw-r--r-- | util/fbrun/Makefile.am | 8 | ||||
-rw-r--r-- | util/fbrun/Makemodule.am | 22 |
3 files changed, 22 insertions, 12 deletions
diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc index fac09b9..66a5fec 100644 --- a/util/fbrun/FbRun.cc +++ b/util/fbrun/FbRun.cc | |||
@@ -27,10 +27,6 @@ | |||
27 | #include "FbTk/KeyUtil.hh" | 27 | #include "FbTk/KeyUtil.hh" |
28 | #include "FbTk/FileUtil.hh" | 28 | #include "FbTk/FileUtil.hh" |
29 | 29 | ||
30 | #ifdef HAVE_CONFIG_H | ||
31 | #include "config.h" | ||
32 | #endif // HAVE_CONFIG_H | ||
33 | |||
34 | #ifdef HAVE_XPM | 30 | #ifdef HAVE_XPM |
35 | #include <X11/xpm.h> | 31 | #include <X11/xpm.h> |
36 | #include "fbrun.xpm" | 32 | #include "fbrun.xpm" |
diff --git a/util/fbrun/Makefile.am b/util/fbrun/Makefile.am deleted file mode 100644 index 35317df..0000000 --- a/util/fbrun/Makefile.am +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | FLUXBOX_SRC_DIR= ../../src/ | ||
2 | AM_CPPFLAGS= -I$(top_srcdir)/src -I$(top_srcdir)/src/FbTk | ||
3 | bin_PROGRAMS= fbrun | ||
4 | fbrun_SOURCES= FbRun.hh FbRun.cc main.cc fbrun.xpm | ||
5 | fbrun_LDADD= ${FLUXBOX_SRC_DIR}FbTk/libFbTk.a | ||
6 | |||
7 | ${FLUXBOX_SRC_DIR}FbTk/libFbTk.a: | ||
8 | cd ${FLUXBOX_SRC_DIR}FbTk && make | ||
diff --git a/util/fbrun/Makemodule.am b/util/fbrun/Makemodule.am new file mode 100644 index 0000000..f730ac8 --- /dev/null +++ b/util/fbrun/Makemodule.am | |||
@@ -0,0 +1,22 @@ | |||
1 | bin_PROGRAMS += fbrun | ||
2 | |||
3 | fbrun_CPPFLAGS = \ | ||
4 | $(AM_CPPFLAGS) \ | ||
5 | -I$(src_incdir) | ||
6 | |||
7 | fbrun_SOURCES = \ | ||
8 | util/fbrun/FbRun.hh \ | ||
9 | util/fbrun/FbRun.cc \ | ||
10 | util/fbrun/main.cc \ | ||
11 | util/fbrun/fbrun.xpm | ||
12 | |||
13 | fbrun_LDADD = libFbTk.a | ||
14 | |||
15 | fbrun_LDFLAGS = \ | ||
16 | $(FONTCONFIG_LIBS) \ | ||
17 | $(FRIBIDI_LIBS) \ | ||
18 | $(X11_LIBS) \ | ||
19 | $(XFT_LIBS) \ | ||
20 | $(XINERAMA_LIBS) \ | ||
21 | $(XPM_LIBS) \ | ||
22 | $(XRENDER_LIBS) | ||