File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
- snake
1
+ pipes-c
2
2
* .swp
3
3
* .o
4
4
Makefile
Original file line number Diff line number Diff line change 1
- bin_PROGRAMS = snake
2
- snake_SOURCES = src/snake .c \
1
+ bin_PROGRAMS = cpipes
2
+ cpipes_SOURCES = src/cpipes .c \
3
3
src/pipe.c src/pipe.h \
4
4
src/render.c src/render.h \
5
5
src/util.c src/util.h
6
- snake_CFLAGS = $(WARN_CFLAGS )
7
- snake_LDFLAGS = $(WARN_CFLAGS )
8
- snake_LDADD = $(CURSES_LIBS )
9
- snake_CPPFLAGS = $(CURSES_CFLAGS )
6
+ cpipes_CFLAGS = $(WARN_CFLAGS )
7
+ cpipes_LDFLAGS = $(WARN_CFLAGS )
8
+ cpipes_LDADD = $(CURSES_LIBS )
9
+ cpipes_CPPFLAGS = $(CURSES_CFLAGS )
Original file line number Diff line number Diff line change 1
- # Snakes
1
+ # Pipes.c
2
2
3
3
> * A small piece of software designed to emulate the windows "pipes"
4
4
screensaver in a terminal window.*
@@ -33,11 +33,11 @@ autoconf-archive are required.
33
33
34
34
## Usage
35
35
36
- To get help, run ` snake --help` . In my opinion, the following options are
36
+ To get help, run ` cpipes --help` . In my opinion, the following options are
37
37
especially interesting:
38
38
39
- snake -p30 -r1
40
- snake -p100 -r0 -i1
39
+ cpipes -p30 -r1
40
+ cpipes -p100 -r0 -i1
41
41
42
42
## Bugs
43
43
Original file line number Diff line number Diff line change 3
3
AC_PREREQ ( [ 2.64] )
4
4
5
5
# Package version from `git describe --always`
6
- AC_INIT ( [ snake ] ,
6
+ AC_INIT ( [ pipes.c ] ,
7
7
[ m4_esyscmd_s ( [ git describe --always] ) ] ,
8
8
[ stefans.mezulis@gmail.com] )
9
9
AC_CONFIG_HEADERS ( [ config.h] )
10
- AC_CONFIG_SRCDIR ( [ src/snake .c] )
10
+ AC_CONFIG_SRCDIR ( [ src/cpipes .c] )
11
11
AM_INIT_AUTOMAKE ( [ -Wall -Werror foreign subdir-objects] )
12
12
AC_PROG_SED
13
13
AC_LANG ( [ C] )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ void render(void *data);
33
33
int initial_state = -1 ;
34
34
35
35
const char * usage =
36
- "Usage: snake [OPTIONS]\n"
36
+ "Usage: cpipes [OPTIONS]\n"
37
37
"Options:\n"
38
38
" -p, --pipes=N Number of pipes. (Default: 20 )\n"
39
39
" -f, --fps=F Frames per second. (Default: 60.0 )\n"
You can’t perform that action at this time.
0 commit comments