Include sub-Makefiles directly, then remove them
This commit is contained in:
parent
7cad659806
commit
2476faf85d
32
Makefile.am
32
Makefile.am
|
@ -6,11 +6,32 @@ bin_PROGRAMS =
|
|||
doc_DATA =
|
||||
man_MANS =
|
||||
|
||||
LAYOUTS =
|
||||
WIDGETS =
|
||||
|
||||
include layouts/Makefile-files
|
||||
include widgets/Makefile-files
|
||||
LAYOUTS =
|
||||
|
||||
LAYOUTS += layouts/tile.c
|
||||
LAYOUTS += layouts/tile.h
|
||||
|
||||
LAYOUTS += layouts/floating.c
|
||||
LAYOUTS += layouts/floating.h
|
||||
|
||||
LAYOUTS += layouts/max.c
|
||||
LAYOUTS += layouts/max.h
|
||||
|
||||
LAYOUTS += layouts/fibonacci.c
|
||||
LAYOUTS += layouts/fibonacci.h
|
||||
|
||||
|
||||
WIDGETS =
|
||||
WIDGETS += widgets/taglist.c
|
||||
WIDGETS += widgets/layoutinfo.c
|
||||
WIDGETS += widgets/textbox.c
|
||||
WIDGETS += widgets/focustitle.c
|
||||
WIDGETS += widgets/iconbox.c
|
||||
WIDGETS += widgets/netwmicon.c
|
||||
WIDGETS += widgets/progressbar.c
|
||||
WIDGETS += widgets/tasklist.c
|
||||
|
||||
|
||||
EXTRA_DIST += awesomerc
|
||||
doc_DATA += awesomerc
|
||||
|
@ -23,6 +44,7 @@ doc_DATA += LICENSE
|
|||
EXTRA_DIST += STYLE
|
||||
doc_DATA += STYLE
|
||||
|
||||
|
||||
CLEANFILES += defconfig.h
|
||||
BUILT_SOURCES += defconfig.h
|
||||
defconfig.h: $(srcdir)/awesomerc
|
||||
|
@ -74,6 +96,7 @@ awesome_client_SOURCES = \
|
|||
awesome-client-common.c \
|
||||
util.c util.h
|
||||
|
||||
|
||||
EXTRA_DIST += awesome.1.txt
|
||||
man_MANS += awesome.1
|
||||
|
||||
|
@ -98,6 +121,7 @@ if HAVE_ASCIIDOC
|
|||
$(ASCIIDOC) -d manpage -b docbook -o $@ $<
|
||||
endif
|
||||
|
||||
|
||||
EXTRA_DIST += awesome.doxygen.in
|
||||
|
||||
# Workaround for buggy pre-1.5.3 doxygen.
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
|
||||
LAYOUTS += layouts/tile.c
|
||||
LAYOUTS += layouts/tile.h
|
||||
|
||||
LAYOUTS += layouts/floating.c
|
||||
LAYOUTS += layouts/floating.h
|
||||
|
||||
LAYOUTS += layouts/max.c
|
||||
LAYOUTS += layouts/max.h
|
||||
|
||||
LAYOUTS += layouts/fibonacci.c
|
||||
LAYOUTS += layouts/fibonacci.h
|
|
@ -1,10 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
|
||||
WIDGETS += widgets/taglist.c
|
||||
WIDGETS += widgets/layoutinfo.c
|
||||
WIDGETS += widgets/textbox.c
|
||||
WIDGETS += widgets/focustitle.c
|
||||
WIDGETS += widgets/iconbox.c
|
||||
WIDGETS += widgets/netwmicon.c
|
||||
WIDGETS += widgets/progressbar.c
|
||||
WIDGETS += widgets/tasklist.c
|
Loading…
Reference in New Issue