source: trunk/MagicSoft/Cosy/gui/Makefile@ 7790

Last change on this file since 7790 was 7790, checked in by tbretz, 18 years ago
*** empty log message ***
File size: 1.1 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 -I../caos -I../tcpip \
24 -I../mars
25
26# @code
27
28CINT = Gui
29LIB = gui.a
30
31#------------------------------------------------------------------------------
32
33.SUFFIXES: .c .cc .cxx .h .hxx .o
34
35SRCFILES = MGCosy.cc \
36 MGCoordinate.cc \
37 MGCoordinates.cc \
38 MGImage.cc \
39 MGEmbeddedCanvas.cc \
40 MGAccuracy.cc \
41 MGStarg.cc \
42 MGNumStars.cc \
43 MGSkyPosition.cc
44
45SRCS = $(SRCFILES)
46HEADERS = $(SRCFILES:.cc=.h)
47OBJS = $(SRCFILES:.cc=.o)
48CINTHEADERS = $(HEADERS)
49
50############################################################
51
52all: $(LIB)
53
54include ../Makefile.rules
55
56clean: rmlib rmcint rmobjs rmcore
57
58mrproper: clean rmbak
59
60# @endcode
61
Note: See TracBrowser for help on using the repository browser.