parent
19d3603c55
commit
c30c022f37
@ -0,0 +1,22 @@
|
|||||||
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
|
## Created by Anjuta - will be overwritten
|
||||||
|
## If you don't want it to overwrite it,
|
||||||
|
## Please disable it in the Anjuta project configuration
|
||||||
|
|
||||||
|
bomberclone_includedir = $(pkgincludedir)
|
||||||
|
|
||||||
|
bomberclone_include_DATA = \
|
||||||
|
basic.h \
|
||||||
|
bomberclone.h \
|
||||||
|
chat.h \
|
||||||
|
font.h \
|
||||||
|
gamesrv.h \
|
||||||
|
gfx.h \
|
||||||
|
keybinput.h \
|
||||||
|
map.h \
|
||||||
|
network.h \
|
||||||
|
packets.h \
|
||||||
|
sysfunc.h
|
||||||
|
|
||||||
|
EXTRA_DIST = $(bomberclone_include_DATA)
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: basic.h,v 1.53 2003/09/10 22:21:18 stpohle Exp $ */
|
/* $Id: basic.h,v 1.1 2003/09/21 20:15:28 stpohle Exp $ */
|
||||||
/* basic types which we need everywhere */
|
/* basic types which we need everywhere */
|
||||||
|
|
||||||
#ifndef _BC_BASIC_H_
|
#ifndef _BC_BASIC_H_
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: bomberclone.h,v 1.54 2003/08/29 23:50:39 stpohle Exp $ */
|
/* $Id: bomberclone.h,v 1.1 2003/09/21 20:15:28 stpohle Exp $ */
|
||||||
/* bomberclone.h */
|
/* bomberclone.h */
|
||||||
|
|
||||||
#ifndef _BOMBERCLONE_H_
|
#ifndef _BOMBERCLONE_H_
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: gfx.h,v 1.18 2003/07/25 12:28:50 stpohle Exp $ */
|
/* $Id: gfx.h,v 1.1 2003/09/21 20:15:28 stpohle Exp $ */
|
||||||
#ifndef _GFX_H_
|
#ifndef _GFX_H_
|
||||||
|
|
||||||
#define _GFX_H_
|
#define _GFX_H_
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: map.h,v 1.6 2003/09/10 21:32:22 stpohle Exp $ */
|
/* $Id: map.h,v 1.1 2003/09/21 20:15:28 stpohle Exp $ */
|
||||||
/* map.h */
|
/* map.h */
|
||||||
|
|
||||||
#ifndef _MAP_H_
|
#ifndef _MAP_H_
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: sound.h,v 1.3 2003/08/06 19:29:10 stpohle Exp $ */
|
/* $Id: sound.h,v 1.1 2003/09/21 20:15:28 stpohle Exp $ */
|
||||||
/* include file for the sound */
|
/* include file for the sound */
|
||||||
|
|
||||||
#ifndef _SOUND_H_
|
#ifndef _SOUND_H_
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: sysfunc.h,v 1.8 2003/09/10 21:32:22 stpohle Exp $ */
|
/* $Id: sysfunc.h,v 1.1 2003/09/21 20:15:28 stpohle Exp $ */
|
||||||
/* include some system near functions */
|
/* include some system near functions */
|
||||||
|
|
||||||
#ifndef _SYSFUNC_H_
|
#ifndef _SYSFUNC_H_
|
@ -1,48 +1,36 @@
|
|||||||
|
|
||||||
INCLUDES =
|
INCLUDES = -I../include
|
||||||
|
|
||||||
bin_PROGRAMS = bomberclone
|
bin_PROGRAMS = bomberclone
|
||||||
|
|
||||||
bomberclone_SOURCES = \
|
bomberclone_SOURCES = \
|
||||||
basic.h\
|
|
||||||
main.c\
|
main.c\
|
||||||
bomb.c\
|
bomb.c\
|
||||||
bomberclone.h\
|
|
||||||
debug.c\
|
debug.c\
|
||||||
packets.c\
|
packets.c\
|
||||||
font.c\
|
font.c\
|
||||||
font.h\
|
|
||||||
gfx.h\
|
|
||||||
gfx.c\
|
gfx.c\
|
||||||
gfxengine.c\
|
gfxengine.c\
|
||||||
gfxpixelimage.c\
|
gfxpixelimage.c\
|
||||||
player.c\
|
player.c\
|
||||||
packets.h\
|
|
||||||
game.c\
|
game.c\
|
||||||
netmenu.c\
|
netmenu.c\
|
||||||
network.c\
|
network.c\
|
||||||
udp.c\
|
udp.c\
|
||||||
menu.c\
|
menu.c\
|
||||||
map.c\
|
map.c\
|
||||||
map.h\
|
|
||||||
mapmenu.c\
|
mapmenu.c\
|
||||||
tileset.c\
|
tileset.c\
|
||||||
field.c\
|
field.c\
|
||||||
network.h\
|
|
||||||
sysfunc.h\
|
|
||||||
sysfunc.c\
|
sysfunc.c\
|
||||||
configuration.c\
|
configuration.c\
|
||||||
pkgcache.c\
|
pkgcache.c\
|
||||||
gamesrv.h\
|
|
||||||
gamesrv.c \
|
gamesrv.c \
|
||||||
chat.c \
|
chat.c \
|
||||||
multiwait.c \
|
multiwait.c \
|
||||||
chat.h \
|
|
||||||
keybinput.h \
|
|
||||||
keybinput.c \
|
keybinput.c \
|
||||||
single.c \
|
single.c \
|
||||||
special.c \
|
special.c \
|
||||||
sound.h \
|
|
||||||
sound.c
|
sound.c
|
||||||
|
|
||||||
## bomberclone_LDADD =
|
## bomberclone_LDADD =
|
||||||
|
Loading…
Reference in new issue