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../base -I.. -I../gui -I../catalog -I../devdrv \
|
---|
23 | -I../candrv -I../incl -I../videodev -I../caos -I../tcpip \
|
---|
24 | -I../mars
|
---|
25 |
|
---|
26 | # @code
|
---|
27 |
|
---|
28 | CINT = Main
|
---|
29 | LIB = main.a
|
---|
30 |
|
---|
31 | #------------------------------------------------------------------------------
|
---|
32 |
|
---|
33 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
34 |
|
---|
35 | SRCFILES = MBending.cc \
|
---|
36 | MStarguider.cc \
|
---|
37 | MStargHistograms.cc \
|
---|
38 | MPointing.cc \
|
---|
39 | MTracking.cc \
|
---|
40 | MCaos.cc \
|
---|
41 | MCosy.cc
|
---|
42 |
|
---|
43 | SRCS = $(SRCFILES)
|
---|
44 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
45 | OBJS = $(SRCFILES:.cc=.o)
|
---|
46 | CINTHEADERS = $(HEADERS)
|
---|
47 |
|
---|
48 | ############################################################
|
---|
49 |
|
---|
50 | all: $(LIB)
|
---|
51 |
|
---|
52 | include ../Makefile.rules
|
---|
53 |
|
---|
54 | clean: rmlib rmcint rmobjs rmcore
|
---|
55 |
|
---|
56 | mrproper: clean rmbak
|
---|
57 |
|
---|
58 | # @endcode
|
---|
59 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.