Mercurial > hg > Game > Cerium
view old/framebuffer/Makefile @ 981:fdb36a9c5030 draft
add double buffering frame device
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 30 Sep 2010 23:54:08 +0900 |
parents | a788a82767ea |
children | 9f5e6bfb1c09 |
line wrap: on
line source
all: fb_info fb_test CC = gcc -std=c99 -O2 fb_info : fb_info.o cp_fb.o cp_vt.o $(CC) -o $@ $+ fb_test : fb_test.o cp_fb.o cp_vt.o -lm $(CC) -o $@ $+ clean: rm -f fb_info fb_test *.o