view old/framebuffer/Makefile @ 981:a193a851b5e3

add double buffering frame device
author root@henri.cr.ie.u-ryukyu.ac.jp
date Thu, 30 Sep 2010 23:54:08 +0900
parents 4ce73df9ac61
children b29547a5b85b
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