update
This commit is contained in:
parent
44f0695af5
commit
f2c58a0348
4 changed files with 37 additions and 19 deletions
|
@ -2,3 +2,4 @@ Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
init
|
init
|
||||||
menu
|
menu
|
||||||
|
startup
|
||||||
|
|
|
@ -3,3 +3,4 @@
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
bsetroot
|
bsetroot
|
||||||
|
startfluxbox
|
||||||
|
|
|
@ -1,17 +1,33 @@
|
||||||
# util/Makefile.am for Fluxbox
|
# util/Makefile.am for Fluxbox
|
||||||
SUBDIRS = fbrun
|
SUBDIRS= fbrun
|
||||||
INCLUDES=-I../src/FbTk/
|
INCLUDES= -I../src/FbTk/
|
||||||
bin_SCRIPTS = fbsetbg fluxbox-generate_menu
|
bin_SCRIPTS= fbsetbg fluxbox-generate_menu startfluxbox
|
||||||
bin_PROGRAMS = bsetroot
|
bin_PROGRAMS= bsetroot
|
||||||
bsetroot_SOURCES = bsetroot.cc bsetroot.hh
|
bsetroot_SOURCES= bsetroot.cc bsetroot.hh
|
||||||
bsetroot_LDADD = ../src/FbRootWindow.o ../src/I18n.o ../src/FbAtoms.o \
|
bsetroot_LDADD= ../src/FbRootWindow.o ../src/I18n.o \
|
||||||
../src/FbTk/libFbTk.a
|
../src/FbAtoms.o ../src/FbTk/libFbTk.a
|
||||||
|
|
||||||
MAINTAINERCLEANFILES = Makefile.in
|
MAINTAINERCLEANFILES= Makefile.in
|
||||||
EXTRA_DIST=fbsetbg fluxbox-generate_menu
|
EXTRA_DIST= fbsetbg fluxbox-generate_menu startfluxbox
|
||||||
|
|
||||||
|
all-local: startfluxbox
|
||||||
|
|
||||||
distclean-local:
|
distclean-local:
|
||||||
rm -f *\~ Makefile.in
|
rm -f *\~ Makefile.in
|
||||||
|
|
||||||
bsetroot.o: bsetroot.cc ../config.h bsetroot.hh ../src/FbRootWindow.hh ../src/FbAtoms.hh
|
clean-local:
|
||||||
|
rm -f startfluxbox
|
||||||
|
|
||||||
|
bsetroot.o: bsetroot.cc ../config.h bsetroot.hh ../src/FbRootWindow.hh ../src/FbAtoms.hh
|
||||||
|
|
||||||
|
startfluxbox: startfluxbox.in
|
||||||
|
@regex_cmd@ -e "s,@pkgdatadir@,$(pkgdatadir),g" \
|
||||||
|
-e "s,@pkgbindir@,$(bindir),g" \
|
||||||
|
startfluxbox.in > startfluxbox
|
||||||
|
|
||||||
|
../src/FbRootWindow.o:
|
||||||
|
cd ../src && make FbRootWindow.o
|
||||||
|
../src/I18n.o:
|
||||||
|
cd ../src && make I18n.o
|
||||||
|
../src/FbAtoms.o:
|
||||||
|
cd ../src && make FbAtoms.o
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
FLUXBOX_SRC_DIR=../../src/
|
FLUXBOX_SRC_DIR= ../../src/
|
||||||
INCLUDES = -I${FLUXBOX_SRC_DIR} -I${FLUXBOX_SRC_DIR}FbTk
|
INCLUDES= -I${FLUXBOX_SRC_DIR} -I${FLUXBOX_SRC_DIR}FbTk
|
||||||
bin_PROGRAMS = fbrun
|
bin_PROGRAMS= fbrun
|
||||||
fbrun_SOURCES = FbRun.hh FbRun.cc main.cc fbrun.xpm
|
fbrun_SOURCES= FbRun.hh FbRun.cc main.cc fbrun.xpm
|
||||||
|
fbrun_LDADD= ${FLUXBOX_SRC_DIR}FbTk/libFbTk.a
|
||||||
fbrun_LDADD = ${FLUXBOX_SRC_DIR}FbTk/libFbTk.a
|
|
||||||
|
|
||||||
|
|
||||||
|
${FLUXBOX_SRC_DIR}FbTk/libFbTk.a:
|
||||||
|
cd ${FLUXBOX_SRC_DIR}FbTk && make
|
Loading…
Reference in a new issue