Sha256: 7c2355ebae0d6b05616dfefc1c7ad1a4e4fd829028e52016a8a22c274a190a8b

Contents?: true

Size: 482 Bytes

Versions: 24

Compression:

Stored size: 482 Bytes

Contents

# Compile this C chess library

chess:		bitboard.o board.o common.o game.o special.o
		gcc -g -o chess bitboard.o board.o common.o game.o special.o

bitboard.o:	bitboard.h bitboard.c
		gcc -g -c bitboard.c -o bitboard.o

board.o:	board.h board.c
		gcc -g -c board.c -o board.o

common.o:	common.h common.c  
		gcc -g -c common.c -o common.o

game.o:		game.h game.c  
		gcc -g -c game.c -o game.o

special.o:	special.h special.c  
		gcc -g -c special.c -o special.o

clean:
		rm *.o

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
chess-0.4.0 ext/chess/MakefileC
chess-0.3.6 ext/chess/MakefileC
chess-0.3.5 ext/chess/MakefileC
chess-0.3.4 ext/chess/MakefileC
chess-0.3.3 ext/MakefileC
chess-0.3.2 ext/MakefileC
chess-0.3.1 ext/MakefileC
chess-0.3.0 ext/MakefileC
chess-0.2.2 ext/MakefileC
chess-0.2.1 ext/MakefileC
chess-0.2.0 ext/MakefileC
chess-0.1.4 ext/MakefileC
chess-0.1.3 ext/MakefileC
chess-0.1.2 ext/MakefileC
chess-0.1.1 ext/MakefileC
chess-0.1.0 ext/MakefileC
chess-0.0.9 ext/MakefileC
chess-0.0.8 ext/MakefileC
chess-0.0.6 ext/MakefileC
chess-0.0.5 ext/MakefileC