all repos — openbox @ 425b1734c9c195dfa0717627780072f24b5def56

openbox fork - make it a bit more like ryudo

render/Makefile.am (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
themedir=$(datadir)/openbox/themes

theme=operation

AM_CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) $(LIBSN_CFLAGS) $(GL_CFLAGS) \
            -DG_LOG_DOMAIN=\"Render\" \
            -DDEFAULT_THEME=\"$(theme)\" \
            -DTHEMEDIR=\"$(themedir)\"

INCLUDES=-I..
LIBS=$(XFT_LIBS) $(GLIB_LIBS) $(GL_LIBS) @LIBS@

noinst_PROGRAMS=rendertest
rendertest_LDFLAGS=-lobrender -L.
rendertest_SOURCES=test.c

lib_LTLIBRARIES=libobrender.la
libobrender_la_SOURCES=\
  color.h \
  color.c \
  font.h \
  font.c \
  gradient.h \
  gradient.c \
  image.h \
  image.c \
  mask.h \
  mask.c \
  render.h \
  render.c \
  theme.h \
  theme.c \
  instance.h \
  instance.c


noinst_HEADERS=render.h gradient.h color.h font.h mask.h image.h

MAINTAINERCLEANFILES=Makefile.in

distclean-local:
	$(RM) *\~ *.orig *.rej .\#*