Changeset 3598


Ignore:
Timestamp:
08/01/09 16:50:32 (4 years ago)
Author:
sam
Message:

Add a simple snake program using the <conio.h> interface.

Location:
libcaca/trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/Makefile.am

    r2959 r3598  
    44DIST_SUBDIRS = $(SUBDIRS) win32 
    55 
    6 EXTRA_DIST = NOTES COPYING.GPL COPYING.LGPL bootstrap build-dos build-kernel build-win32 caca-config.in libcaca.spec libcaca.sln 
     6EXTRA_DIST = NOTES COPYING.GPL COPYING.ISC COPYING.LGPL bootstrap build-dos build-kernel build-win32 caca-config.in libcaca.spec libcaca.sln 
    77AUTOMAKE_OPTIONS = dist-bzip2 
    88 
  • libcaca/trunk/THANKS

    r1879 r3598  
    1111- Michele Bini <mibin@tin.it> - original SDL plasma 
    1212- Free Software Foundation, Inc. - multiboot.S 
     13- Simon Huggins <webmaster#simonhuggins.com> - conio-snake 
    1314 
    1415\section thanks3 Porters and packagers 
  • libcaca/trunk/examples/.gitignore

    r3588 r3598  
    33colors 
    44conio 
     5conio-snake 
    56demo 
    67demo0 
  • libcaca/trunk/examples/Makefile.am

    r3588 r3598  
    33AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/caca -I$(top_builddir)/caca 
    44 
    5 noinst_PROGRAMS = blit canvas colors conio demo demo0 dithering driver event export figfont font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import 
     5noinst_PROGRAMS = blit canvas colors conio conio-snake demo demo0 dithering driver event export figfont font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import 
    66 
    77blit_SOURCES = blit.c 
     
    1616conio_SOURCES = conio.c 
    1717conio_LDADD = ../caca/libcaca.la 
     18 
     19conio_snake_SOURCES = conio-snake.cpp 
     20conio_snake_LDADD = ../caca/libcaca.la 
    1821 
    1922demo_SOURCES = demo.c 
Note: See TracChangeset for help on using the changeset viewer.