source: trunk/MagicSoft/Cosy/caos/Makefile@ 1798

Last change on this file since 1798 was 1798, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.2 KB
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#
17include ../Makefile.conf.$(OSTYPE)
18include ../Makefile.conf.general
19
20# @endcode
21
22INCLUDES = -I. -I.. -I../base -I../slalib -I../candrv -I../incl \
23 -I../catalog -I../videodev -I../main
24
25# @code
26
27CINT = Gui
28LIB = gui.a
29
30#------------------------------------------------------------------------------
31
32.SUFFIXES: .c .cc .cxx .h .hxx .o
33
34SRCFILES = MGCoordinate.cc \
35 MGCoordinates.cc \
36 MGCosy.cc \
37 MGImage.cc \
38 MGEmbeddedCanvas.cc \
39 MGAccuracy.cc \
40 MGVelocity.cc \
41 MGStarguider.cc \
42 MGPngReader.cc \
43 MGSkyPosition.cc \
44 MGMenu.cc \
45 Led.cc \
46 Leds.cc \
47 Ring.cc \
48 Rings.cc
49
50SRCS = $(SRCFILES)
51HEADERS = $(SRCFILES:.cc=.h)
52OBJS = $(SRCFILES:.cc=.o)
53CINTHEADERS = $(HEADERS)
54
55############################################################
56
57all: $(LIB)
58
59include ../Makefile.rules
60
61clean: rmlib rmcint rmobjs rmcore
62
63mrproper: clean rmbak
64
65# @endcode
66
Note: See TracBrowser for help on using the repository browser.