diff options
author | Adam Tkac <atkac@redhat.com> | 2008-07-14 09:56:02 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-07-14 09:56:02 +0000 |
commit | e3522bcf2d7eb4354fd46d0af63c2cc3a8f11c78 (patch) | |
tree | 0d37ef898e1cfa110a4305343c7752d3f084a69b /unix/tx | |
parent | 67e461fae2272758eed7bfc2a61624b27ad56159 (diff) | |
download | tigervnc-e3522bcf2d7eb4354fd46d0af63c2cc3a8f11c78.tar.gz tigervnc-e3522bcf2d7eb4354fd46d0af63c2cc3a8f11c78.zip |
Include headers in Makefile.am-s in unix/* to fix "make dist" command
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2625 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/tx')
-rw-r--r-- | unix/tx/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/unix/tx/Makefile.am b/unix/tx/Makefile.am index 2e15f15a..ec42dbf4 100644 --- a/unix/tx/Makefile.am +++ b/unix/tx/Makefile.am @@ -1,6 +1,9 @@ noinst_LTLIBRARIES = libtx.la -libtx_la_SOURCES = TXWindow.cxx TXScrollbar.cxx TXViewport.cxx TXImage.cxx \ - TXMenu.cxx +HDRS = TXButton.h TXCheckbox.h TXDialog.h TXEntry.h TXImage.h TXLabel.h \ + TXMenu.h TXMsgBox.h TXScrollbar.h TXViewport.h TXWindow.h + +libtx_la_SOURCES = $(HDRS) TXWindow.cxx TXScrollbar.cxx TXViewport.cxx \ + TXImage.cxx TXMenu.cxx libtx_la_CPPFLAGS = -I$(COMMON_DIR) @X_CFLAGS@ # X_CFLAGS are really CPPFLAGS |