annotate old/framebuffer/Makefile @ 1251:6da91e7cbffb draft

improve create From COLLADA
author Taiki TAIRA <e095767@ie.u-ryukyu.ac.jp>
date Fri, 11 Nov 2011 18:17:26 +0900
parents 9f5e6bfb1c09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
982
9f5e6bfb1c09 avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
1 all: fb_info fb_test fb_finish
980
a788a82767ea frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
2
982
9f5e6bfb1c09 avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
3 CC = gcc -std=c99 -O2 -g
980
a788a82767ea frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
4 fb_info : fb_info.o cp_fb.o cp_vt.o
a788a82767ea frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
5 $(CC) -o $@ $+
a788a82767ea frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
6
a788a82767ea frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
7 fb_test : fb_test.o cp_fb.o cp_vt.o -lm
a788a82767ea frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
8 $(CC) -o $@ $+
981
fdb36a9c5030 add double buffering frame device
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 980
diff changeset
9
982
9f5e6bfb1c09 avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
10 fb_finish : fb_finish.o cp_fb.o cp_vt.o -lm
9f5e6bfb1c09 avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
11 $(CC) -o $@ $+
9f5e6bfb1c09 avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
12
981
fdb36a9c5030 add double buffering frame device
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 980
diff changeset
13 clean:
982
9f5e6bfb1c09 avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
14 rm -f fb_info fb_test fb_finish *.o