Move textscreen GUI demos into an examples/ subdir.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 524
This commit is contained in:
parent
b03198720a
commit
1f101a63a6
5 changed files with 14 additions and 7 deletions
|
|
@ -52,6 +52,7 @@ AC_C_BIGENDIAN
|
|||
AC_OUTPUT([
|
||||
Makefile
|
||||
textscreen/Makefile
|
||||
textscreen/examples/Makefile
|
||||
src/Makefile
|
||||
src/chocolate-doom-res.rc
|
||||
])
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
|
||||
AM_CFLAGS = @SDL_CFLAGS@ -I../src
|
||||
SUBDIRS=examples
|
||||
|
||||
noinst_LIBRARIES=libtextscreen.a
|
||||
bin_PROGRAMS=guitest calculator
|
||||
|
||||
libtextscreen_a_LIBADD = @SDL_LIBS@
|
||||
libtextscreen_a_SOURCES = \
|
||||
txt_checkbox.c txt_checkbox.h \
|
||||
txt_desktop.c txt_desktop.h \
|
||||
|
|
@ -21,9 +22,3 @@ libtextscreen_a_SOURCES = \
|
|||
txt_window_action.c txt_window_action.h \
|
||||
txt_font.h
|
||||
|
||||
guitest_LDADD = @SDL_LIBS@ libtextscreen.a
|
||||
guitest_SOURCES = guitest.c
|
||||
|
||||
calculator_LDADD = @SDL_LIBS@ libtextscreen.a
|
||||
calculator_SOURCES = calculator.c
|
||||
|
||||
|
|
|
|||
11
textscreen/examples/Makefile.am
Normal file
11
textscreen/examples/Makefile.am
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
AM_CFLAGS = @SDL_CFLAGS@ -I.. -I../../src
|
||||
|
||||
noinst_PROGRAMS=guitest calculator
|
||||
|
||||
guitest_LDADD = @LDFLAGS@ @SDL_LIBS@ ../libtextscreen.a
|
||||
guitest_SOURCES = guitest.c
|
||||
|
||||
calculator_LDADD = @LDFLAGS@ @SDL_LIBS@ ../libtextscreen.a
|
||||
calculator_SOURCES = calculator.c
|
||||
|
||||
Loading…
Reference in a new issue