- Timestamp:
- Nov 25, 2007, 6:13:06 PM (13 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 1 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/AUTHORS
r2026 r2060 10 10 - exporters 11 11 - network driver 12 - C# bindings 12 13 13 14 John Beppu <beppu@lbox.org> … … 20 21 - Ruby bindings 21 22 23 Daniele "Eriol" Tricoli <eriol@mornie.org> 24 - Python CTypes sample program 25 22 26 */ -
libcaca/trunk/Makefile.am
r2044 r2060 1 1 # $Id$ 2 2 3 SUBDIRS = kernel cucul caca src test tools csharp cxx ruby doc3 SUBDIRS = kernel cucul caca src test tools csharp cxx python ruby doc 4 4 DIST_SUBDIRS = $(SUBDIRS) msvc 5 5 -
libcaca/trunk/configure.ac
r2053 r2060 435 435 csharp/Makefile 436 436 cxx/Makefile 437 python/Makefile 437 438 ruby/Makefile 438 439 doc/Makefile -
libcaca/trunk/python/Makefile.am
r2059 r2060 1 # $Id: $ 2 3 EXTRA_DIST = caca.txt pypycaca.c pypycaca.h snake.py test1.py test2.py 4 1 5 CC = gcc 2 6 RM = rm -f … … 10 14 11 15 all: 16 17 python: 12 18 $(CC) pypycaca.c -c $(CACAFLAGS) $(PYTHONFLAGS) -Wall 13 19 $(LD) pypycaca.o -o $(NAME) $(CACALIBS) $(PYTHONLIBS) -shared
Note: See TracChangeset
for help on using the changeset viewer.