Cleanup the top directory a bit. sed -i 's/\$\{([^{]+)\}/$(\1)/g' **/Makefile **/*.mk

This commit is contained in:
Kris Maglione 2010-05-22 20:55:16 -04:00
parent c04f3ec6a0
commit ae3c20b7ae
294 changed files with 83 additions and 71 deletions

View File

@ -1,23 +1,15 @@
ROOT=.
include ${ROOT}/mk/hdr.mk
include ${ROOT}/mk/wmii.mk
include $(ROOT)/mk/hdr.mk
include $(ROOT)/mk/wmii.mk
PDIRS = \
DIRS = \
doc \
man \
lib \
cmd \
libwmii_hack \
rc \
alternative_wmiircs
DIRS = \
libstuff \
libbio \
libfmt \
libregexp \
libutf \
$(PDIRS)
DOCS = README \
LICENSE
@ -34,6 +26,5 @@ deb:
dpkg-buildpackage -rfakeroot -b -nc
[ -d .hg ] && hg revert debian/changelog
include ${ROOT}/mk/dir.mk
INSTDIRS = $(PDIRS)
include $(ROOT)/mk/dir.mk

3
NEWS
View File

@ -1,3 +1,6 @@
3.1b1:
* Xft is now loaded on demand
* colrules widths may now be specified in pixels
3.9b1:
* wmii9menu is now Xinerama aware.

View File

@ -1,8 +1,8 @@
ROOT= ../..
include ${ROOT}/mk/hdr.mk
include ${ROOT}/mk/wmii.mk
include $(ROOT)/mk/hdr.mk
include $(ROOT)/mk/wmii.mk
main.c: ${ROOT}/mk/wmii.mk
main.c: $(ROOT)/mk/wmii.mk
TARG = click
HFILES= dat.h fns.h
@ -14,5 +14,5 @@ LIBS += -lm -lXtst $(LIBS9)
CFLAGS += -DIXP_NEEDAPI=86
OBJ = main
include ${ROOT}/mk/one.mk
include $(ROOT)/mk/one.mk

View File

@ -1,8 +1,8 @@
ROOT= ../..
include ${ROOT}/mk/hdr.mk
include ${ROOT}/mk/wmii.mk
include $(ROOT)/mk/hdr.mk
include $(ROOT)/mk/wmii.mk
main.c: ${ROOT}/mk/wmii.mk
main.c: $(ROOT)/mk/wmii.mk
TARG = wistrut
HFILES= dat.h fns.h
@ -16,5 +16,5 @@ OBJ = main \
ewmh \
win
include ${ROOT}/mk/one.mk
include $(ROOT)/mk/one.mk

View File

@ -1,6 +1,6 @@
ROOT= ..
include ${ROOT}/mk/hdr.mk
include $(ROOT)/mk/hdr.mk
HFILES = ixp.h ixp_fcall.h
include ${ROOT}/mk/common.mk
include $(ROOT)/mk/common.mk

18
lib/Makefile Normal file
View File

@ -0,0 +1,18 @@
ROOT=..
include $(ROOT)/mk/hdr.mk
include $(ROOT)/mk/wmii.mk
PDIRS = \
libwmii_hack
DIRS = \
libstuff \
libbio \
libfmt \
libregexp \
libutf \
$(PDIRS)
include $(ROOT)/mk/dir.mk
INSTDIRS = $(PDIRS)

View File

@ -1,5 +1,5 @@
ROOT= ..
include ${ROOT}/mk/hdr.mk
ROOT= ../..
include $(ROOT)/mk/hdr.mk
VERSION=2.0
TARG=libbio
@ -23,5 +23,5 @@ OBJ=\
bseek\
bwrite
include ${ROOT}/mk/lib.mk
include $(ROOT)/mk/lib.mk

View File

@ -1,5 +1,5 @@
ROOT= ..
include ${ROOT}/mk/hdr.mk
ROOT= ../..
include $(ROOT)/mk/hdr.mk
VERSION=2.0
TARG=libfmt
@ -44,5 +44,5 @@ OBJ=\
vsnprint\
$(NUM)
include ${ROOT}/mk/lib.mk
include $(ROOT)/mk/lib.mk

View File

@ -1,5 +1,5 @@
ROOT= ..
include ${ROOT}/mk/hdr.mk
ROOT= ../..
include $(ROOT)/mk/hdr.mk
VERSION=2.0
TARG=libregexp9
@ -13,5 +13,5 @@ OBJ=\
rregexec\
rregsub
include ${ROOT}/mk/lib.mk
include $(ROOT)/mk/lib.mk

View File

@ -1,5 +1,5 @@
ROOT= ..
include ${ROOT}/mk/hdr.mk
ROOT= ../..
include $(ROOT)/mk/hdr.mk
TARG=libstuff
@ -168,5 +168,5 @@ OBJ=\
x11/windows/window \
xext
include ${ROOT}/mk/lib.mk
include $(ROOT)/mk/lib.mk

Some files were not shown because too many files have changed in this diff Show More