2011-04-30 04:54:07 +04:00
|
|
|
CC = i686-pc-toaru-gcc
|
2011-04-30 06:41:29 +04:00
|
|
|
CFLAGS = -march=core2 -std=c99 -O3 -I/afs/acm.uiuc.edu/user/lange7/toaru-toolchain/local/i686-pc-toaru/include/freetype2
|
2011-04-30 04:54:07 +04:00
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
all: ../initrd/bin/game
|
|
|
|
|
|
|
|
../initrd/bin/game: game
|
|
|
|
cp game ../initrd/bin/game
|
|
|
|
|
|
|
|
game: main.c
|
|
|
|
${CC} ${CFLAGS} -o game main.c ~/toaru-toolchain/local/i686-pc-toaru/lib/libfreetype.a
|