commit 6f8ac36f6644466131b548f0a8a42e260d181aa5
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Apr 30 19:38:24 2010 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Fri Apr 30 19:38:24 2010 +0000
Add textscreen Doxyfile to dist. Add .desktop file to svn:ignore. Add
opl ctags file to localvimrc.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1922
---
.lvimrc | 3 ++-
src/.gitignore | 1 +
textscreen/Makefile.am | 6 ++++--
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.lvimrc b/.lvimrc
index cc2893d9..39b0158f 100644
--- a/.lvimrc
+++ b/.lvimrc
@@ -16,8 +16,9 @@ set tags+=tags
let tagfiles = findfile("tags", ".;", -1)
" Add tag files for libraries:
-call add(tagfiles, topdir . "textscreen/tags")
+call add(tagfiles, topdir . "opl/tags")
call add(tagfiles, topdir . "pcsound/tags")
+call add(tagfiles, topdir . "textscreen/tags")
for tagfile in tagfiles
" Don't go beyond the project top level when adding parent dirs:
diff --git a/src/.gitignore b/src/.gitignore
index 973a0073..2c4a3c48 100644
--- a/src/.gitignore
+++ b/src/.gitignore
@@ -5,5 +5,6 @@ Makefile.in
chocolate-doom
chocolate-server
*.exe
+*.desktop
tags
TAGS
diff --git a/textscreen/Makefile.am b/textscreen/Makefile.am
index b8904520..d6863ca9 100644
--- a/textscreen/Makefile.am
+++ b/textscreen/Makefile.am
@@ -9,6 +9,8 @@ SUBDIRS= . examples
noinst_LIBRARIES=libtextscreen.a
+EXTRA_DIST=Doxyfile
+
libtextscreen_a_SOURCES = \
textscreen.h \
txt_checkbox.c txt_checkbox.h \
@@ -21,11 +23,11 @@ libtextscreen_a_SOURCES = \
txt_button.c txt_button.h \
txt_label.c txt_label.h \
txt_radiobutton.c txt_radiobutton.h \
- txt_scrollpane.c txt_scrollpane.h \
+ txt_scrollpane.c txt_scrollpane.h \
txt_separator.c txt_separator.h \
txt_spinctrl.c txt_spinctrl.h \
txt_sdl.c txt_sdl.h \
- txt_smallfont.h \
+ txt_smallfont.h \
txt_strut.c txt_strut.h \
txt_table.c txt_table.h \
txt_widget.c txt_widget.h \