summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-09 21:24:58 +0000
committerDana Jansens <danakj@orodu.net>2003-04-09 21:24:58 +0000
commit51e27c03cfc53b8070f2d020c033fdce383116af (patch)
tree2e6833ef1f66fa16d71fb3afa9da935054ae40e9 /build
parent787cbcf656890fae77fd3e6bef8e2d0cfc669ee8 (diff)
set up the atoms in cwmcc
Diffstat (limited to 'build')
-rw-r--r--build/Makefile.cwmcc3
-rw-r--r--build/Makefile.incl.in2
2 files changed, 3 insertions, 2 deletions
diff --git a/build/Makefile.cwmcc b/build/Makefile.cwmcc
index 5593519c..312d7fb3 100644
--- a/build/Makefile.cwmcc
+++ b/build/Makefile.cwmcc
@@ -3,9 +3,10 @@ include build/Makefile.incl
dir = cwmcc
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"CWMCC\"
+LIBS += $(GLIB_LIBS)
target = libcwmcc.la
-sources = cwmcc.c
+sources = cwmcc.c atom.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/, $(target))
diff --git a/build/Makefile.incl.in b/build/Makefile.incl.in
index e025751d..c420d82b 100644
--- a/build/Makefile.incl.in
+++ b/build/Makefile.incl.in
@@ -55,6 +55,6 @@ themedir = $(datadir)/openbox/themes
COMPILE = $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS)
DEPCOMPILE = $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS)
-LINK = $(LIBTOOL) --mode=link $(CC)
+LINK = $(LIBTOOL) --mode=link $(CC) $(LIBS)
LTCLEAN = $(LIBTOOL) --mode=clean $(RM)
LTRM = $(LIBTOOL) --mode=uninstall $(RM)