annotate old/framebuffer/Makefile @ 982:b29547a5b85b

avoid WAIT in virtual console
author root@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 01 Oct 2010 00:26:02 +0900
parents a193a851b5e3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
982
b29547a5b85b 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
4ce73df9ac61 frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
2
982
b29547a5b85b 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
4ce73df9ac61 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
4ce73df9ac61 frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
5 $(CC) -o $@ $+
4ce73df9ac61 frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
6
4ce73df9ac61 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
4ce73df9ac61 frame buffer example
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
diff changeset
8 $(CC) -o $@ $+
981
a193a851b5e3 add double buffering frame device
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 980
diff changeset
9
982
b29547a5b85b 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
b29547a5b85b avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
11 $(CC) -o $@ $+
b29547a5b85b avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 981
diff changeset
12
981
a193a851b5e3 add double buffering frame device
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 980
diff changeset
13 clean:
982
b29547a5b85b 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