diff options
author | simon <simon> | 2008-03-23 15:09:21 +0000 |
---|---|---|
committer | simon <simon> | 2008-03-23 15:09:21 +0000 |
commit | c3aa344e7836f4214f6cff6e2fa7c0297e7da16e (patch) | |
tree | 2c07ad69a106a4c5f33744f0001e97d731969e21 /Makefile | |
parent | 38ff7a904ede4e6412e5d89844e62b60e2c90fdb (diff) | |
download | cwm-c3aa344e7836f4214f6cff6e2fa7c0297e7da16e.tar.gz cwm-c3aa344e7836f4214f6cff6e2fa7c0297e7da16e.tar.xz cwm-c3aa344e7836f4214f6cff6e2fa7c0297e7da16e.zip |
Replace the symlink configuration scheme with a simple yacc parser as
found in other places of the tree. Remove sticky and font commandline options and add another one for alternative config locations. Split off cwmrc(5) from cwm(1), nuke #ifdef __OpenBSD__ while there. tested by various kind people, feedback from oga@ and okan@ - thanks! ok oga@, jasper@, okan@
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 2af7f16..fbc60e6 100644 --- a/Makefile +++ b/Makefile @@ -8,16 +8,17 @@ PROG= cwm SRCS= calmwm.c screen.c xmalloc.c client.c grab.c search.c \ util.c xutil.c conf.c input.c xevents.c group.c \ - kbfunc.c font.c + kbfunc.c font.c parse.y -CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 +CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR} LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp \ -lfontconfig -lexpat -lfreetype -lz -lX11 -lXau -lXdmcp -lXext MANDIR= ${X11BASE}/man/cat +MAN= cwm.1 cwmrc.5 -CLEANFILES= cwm.cat1 +CLEANFILES= cwm.cat1 cwmrc.cat5 obj: _xenocara_obj |