source: trunk/MagicSoft/Cosy/main/Makefile@ 6750

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