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../base -I../slalib -I../candrv -I../incl \
|
---|
23 | -I../catalog -I../videodev -I../main
|
---|
24 |
|
---|
25 | # @code
|
---|
26 |
|
---|
27 | CINT = Gui
|
---|
28 | LIB = gui.a
|
---|
29 |
|
---|
30 | #------------------------------------------------------------------------------
|
---|
31 |
|
---|
32 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
33 |
|
---|
34 | SRCFILES = MGCoordinate.cc \
|
---|
35 | MGCoordinates.cc \
|
---|
36 | MGCosy.cc \
|
---|
37 | MGImage.cc \
|
---|
38 | MGEmbeddedCanvas.cc \
|
---|
39 | MGAccuracy.cc \
|
---|
40 | MGVelocity.cc \
|
---|
41 | MGStarguider.cc \
|
---|
42 | MGSkyPosition.cc
|
---|
43 |
|
---|
44 | SRCS = $(SRCFILES)
|
---|
45 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
46 | OBJS = $(SRCFILES:.cc=.o)
|
---|
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.