diff options
| author | Marius Nita <marius@cs.pdx.edu> | 2002-11-01 03:27:41 +0000 |
|---|---|---|
| committer | Marius Nita <marius@cs.pdx.edu> | 2002-11-01 03:27:41 +0000 |
| commit | 85c41a1aec90b8daefc425596ea34b6f9d0e643c (patch) | |
| tree | d9a27e7be039b0d94d8f7d66cb6c158a32172278 /otk/Makefile.am | |
| parent | a7c71b36842bb44672aa928a8b63c82092e1b9b5 (diff) | |
adding toolkit beginnings
Diffstat (limited to 'otk/Makefile.am')
| -rw-r--r-- | otk/Makefile.am | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/otk/Makefile.am b/otk/Makefile.am new file mode 100644 index 00000000..835874d5 --- /dev/null +++ b/otk/Makefile.am @@ -0,0 +1,35 @@ +DEFAULT_MENU=$(pkgdatadir)/menu +DEFAULT_STYLE=$(pkgdatadir)/styles/mbdtex + +CXXFLAGS=`pkg-config --cflags xft` @CXXFLAGS@ \ +-DDEFAULTMENU=\"$(DEFAULT_MENU)\" \ +-DDEFAULTSTYLE=\"$(DEFAULT_STYLE)\" \ +-Dmultibyte\(\)=True + +INCLUDES= -I../src + +LDFLAGS=`pkg-config --libs xft` + +noinst_LIBRARIES=libotk.a + +libotk_a_SOURCES= color.cc font.cc gccache.cc image.cc imagecontrol.cc texture.cc + +MAINTAINERCLEANFILES= Makefile.in + +distclean-local: + rm -f *\~ *.orig *.rej .\#* + +# local dependencies +color.o: color.cc color.hh ../src/basedisplay.hh ../src/timer.hh ../src/util.hh +font.o: font.cc font.hh ../src/screen.hh color.hh texture.hh ../src/util.hh image.hh \ + ../src/timer.hh ../src/basedisplay.hh ../src/workspace.hh ../src/xatom.hh ../src/blackbox.hh \ + ../src/configuration.hh gccache.hh +gccache.o: gccache.cc gccache.hh ../src/basedisplay.hh ../src/timer.hh ../src/util.hh \ + color.hh +image.o: image.cc ../src/blackbox.hh ../src/basedisplay.hh ../src/timer.hh ../src/util.hh \ + ../src/configuration.hh ../src/xatom.hh gccache.hh color.hh image.hh texture.hh +imagecontrol.o: imagecontrol.cc ../src/blackbox.hh ../src/basedisplay.hh ../src/timer.hh \ + ../src/util.hh ../src/configuration.hh ../src/xatom.hh color.hh image.hh texture.hh +texture.o: texture.cc texture.hh color.hh ../src/util.hh ../src/basedisplay.hh \ + ../src/timer.hh image.hh ../src/screen.hh ../src/workspace.hh ../src/xatom.hh \ + ../src/blackbox.hh ../src/configuration.hh |
