Appendix L - Makefile
1: # $Id: Makefile,v 1.2 2000/04/08 03:45:13 mzalokar Exp $
2: #
3: # Makefile for the sample SIE device. Just define the 4 variables below and
4: # include ../Makefile.devicess.common. Of course, you just write your own
5: # more complicated makefile, but this is supposed to make it easier for those
6: # of you who aren't yet Make gurus (shame on you).
7:
8: DEVICE_NAME = ttt_vision # the name of your device
9: DEVICE_SRC = ttt_vision.c chaincode.c linked_list.c pgm.c
10: DEVICE_FLAGS = -ansi -fstrict-aliasing $(THREAD_FLAGS)
11: DEVICE_LIBS = -L../../lib -lsie_utils $(XLIBS) $(GLUTLIBS) $(THREAD_LIBS) \
12: -lposix4
13:
14: # include the device-common stuff
15:
16: include ../Makefile.devices.common
17: