This website works better with JavaScript.
首頁
說明
登入
cacalabs
/
libcaca
镜像来自
https://github.com/cacalabs/libcaca.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
7
Wiki
Activity
瀏覽代碼
* Moved test/optipal.c to tools/optipal.c. The tools subdirectory will
contain development tools that are only useful to libcaca developers.
tags/v0.99.beta14
Sam Hocevar
sam
18 年之前
父節點
52d877a405
當前提交
6fb44a69f9
共有
6 個文件被更改
,包括
14 次插入
和
8 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile.am
+1
-1
caca/driver_slang.c
+1
-0
configure.ac
+1
-4
test/Makefile.am
+8
-0
tools/Makefile.am
+2
-2
tools/optipal.c
+ 1
- 1
Makefile.am
查看文件
@@ -1,6 +1,6 @@
# $Id$
SUBDIRS = kernel cucul caca src test doc
SUBDIRS = kernel cucul caca src test
tools
doc
DIST_SUBDIRS = $(SUBDIRS) autotools debian msvc
EXTRA_DIST = NOTES COPYING.GPL COPYING.LGPL bootstrap build-dos build-kernel build-win32 caca-config.in libcaca.spec
+ 1
- 1
caca/driver_slang.c
查看文件
@@ -43,7 +43,7 @@
* Global variables
*/
/* Tables generated by t
est
/optipal.c */
/* Tables generated by t
ools
/optipal.c */
static int const slang_palette[2*16*16] =
{
1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8, 0,
+ 1
- 0
configure.ac
查看文件
@@ -292,6 +292,7 @@ AC_CONFIG_FILES([
caca/Makefile
src/Makefile
test/Makefile
tools/Makefile
doc/Makefile
autotools/Makefile
debian/Makefile
+ 1
- 4
test/Makefile.am
查看文件
@@ -2,7 +2,7 @@
AM_CPPFLAGS = -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\"
noinst_PROGRAMS = colors demo dithering event export gamma hsv
optipal
spritedit transform unicode
noinst_PROGRAMS = colors demo dithering event export gamma hsv spritedit transform unicode
colors_SOURCES = colors.c
colors_LDADD = ../caca/libcaca.la ../cucul/libcucul.la @CACA_LIBS@
@@ -25,9 +25,6 @@ gamma_LDADD = ../caca/libcaca.la ../cucul/libcucul.la @CACA_LIBS@ @MATH_LIBS@
hsv_SOURCES = hsv.c
hsv_LDADD = ../caca/libcaca.la ../cucul/libcucul.la @CACA_LIBS@
optipal_SOURCES = optipal.c
optipal_LDADD = ../cucul/libcucul.la @CUCUL_LIBS@
spritedit_SOURCES = spritedit.c
spritedit_LDADD = ../caca/libcaca.la ../cucul/libcucul.la @CACA_LIBS@
+ 8
- 0
tools/Makefile.am
查看文件
@@ -0,0 +1,8 @@
# $Id$
AM_CPPFLAGS = -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\"
noinst_PROGRAMS = optipal
optipal_SOURCES = optipal.c
test/optipal.c → tools/optipal.c
查看文件
@@ -1,5 +1,5 @@
/*
* optipal S-Lang optimised palette generator for libc
ucul
* optipal S-Lang optimised palette generator for libc
aca
* Copyright (c) 2003 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
@@ -15,7 +15,7 @@
#include <stdio.h>
#include "cucul.h"
#include "cucul.h"
/* Only necessary for CUCUL_* macros */
static void base_colors(void);
static void emulated_colors(void);
Write
Preview
Loading…
取消
儲存