Line | |
---|
1 | ##################################################################
|
---|
2 | #
|
---|
3 | # makefile
|
---|
4 | #
|
---|
5 | # for the MARS software
|
---|
6 | #
|
---|
7 | ##################################################################
|
---|
8 | # @maintitle
|
---|
9 |
|
---|
10 | # @code
|
---|
11 |
|
---|
12 | #
|
---|
13 | # please change all system depend values in the
|
---|
14 | # config.mk.${OSTYPE} file
|
---|
15 | #
|
---|
16 | #
|
---|
17 | include ../Makefile.conf.$(OSTYPE)
|
---|
18 | include ../Makefile.conf.general
|
---|
19 |
|
---|
20 | # @endcode
|
---|
21 |
|
---|
22 | INCLUDES = -I. -I.. -I../incl -I../base -I/usr/X11R6/include
|
---|
23 |
|
---|
24 | # @code
|
---|
25 |
|
---|
26 | CINT = Videodev
|
---|
27 | LIB = videodev.a
|
---|
28 |
|
---|
29 | #------------------------------------------------------------------------------
|
---|
30 |
|
---|
31 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
32 |
|
---|
33 | SRCFILES = Camera.cc \
|
---|
34 | Filter.cc \
|
---|
35 | Writer.cc
|
---|
36 |
|
---|
37 | SRCS = $(SRCFILES)
|
---|
38 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
39 | OBJS = $(SRCFILES:.cc=.o)
|
---|
40 | CINTHEADERS = $(HEADERS)
|
---|
41 |
|
---|
42 | ############################################################
|
---|
43 |
|
---|
44 | all: $(LIB)
|
---|
45 |
|
---|
46 | include ../Makefile.rules
|
---|
47 |
|
---|
48 | clean: rmlib rmcint rmobjs rmcore
|
---|
49 |
|
---|
50 | mrproper: clean rmbak
|
---|
51 |
|
---|
52 | # @endcode
|
---|
53 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.