diff old/framebuffer/Makefile @ 980:4ce73df9ac61

frame buffer example
author root@henri.cr.ie.u-ryukyu.ac.jp
date Thu, 30 Sep 2010 22:50:35 +0900
parents
children a193a851b5e3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/old/framebuffer/Makefile	Thu Sep 30 22:50:35 2010 +0900
@@ -0,0 +1,8 @@
+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  $@ $+