From f9c51c1b5c78234a138f9f44c261990336b445e7 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 8 Mar 2009 22:51:25 +0000 Subject: Add "make doc" target to run Doxygen, and add a Doxyfile. Add @file tags to start of header files so that Doxygen will process them. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1451 --- textscreen/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) (limited to 'textscreen/Makefile.am') diff --git a/textscreen/Makefile.am b/textscreen/Makefile.am index d09538fd..7730e930 100644 --- a/textscreen/Makefile.am +++ b/textscreen/Makefile.am @@ -30,3 +30,6 @@ libtextscreen_a_SOURCES = \ txt_window_action.c txt_window_action.h \ txt_font.h +doc: + doxygen + -- cgit v1.2.3 From c2a270f893a8cc08865f0093b02bc35c2b727dc6 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Thu, 23 Apr 2009 18:18:43 +0000 Subject: Add small textscreen font for low resolution displays, based on the Atari-Small font by Tom Fine. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1501 --- textscreen/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'textscreen/Makefile.am') diff --git a/textscreen/Makefile.am b/textscreen/Makefile.am index 7730e930..5d177111 100644 --- a/textscreen/Makefile.am +++ b/textscreen/Makefile.am @@ -23,12 +23,13 @@ libtextscreen_a_SOURCES = \ txt_separator.c txt_separator.h \ txt_spinctrl.c txt_spinctrl.h \ txt_sdl.c txt_sdl.h \ + txt_smallfont.h \ txt_strut.c txt_strut.h \ txt_table.c txt_table.h \ txt_widget.c txt_widget.h \ txt_window.c txt_window.h \ txt_window_action.c txt_window_action.h \ - txt_font.h + txt_font.h doc: doxygen -- cgit v1.2.3 From 0be19fa1fe7fabc04b8fbd593a660fdc85f57d87 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Tue, 26 May 2009 22:14:24 +0000 Subject: Fix tags for functions using TXT_UNCAST_ARG. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1532 --- textscreen/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'textscreen/Makefile.am') diff --git a/textscreen/Makefile.am b/textscreen/Makefile.am index 5d177111..b8904520 100644 --- a/textscreen/Makefile.am +++ b/textscreen/Makefile.am @@ -1,6 +1,8 @@ AM_CFLAGS = -I../src +CTAGS_ARGS=-I TXT_UNCAST_ARG+ + # build this directory before the examples directory. SUBDIRS= . examples -- cgit v1.2.3