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

Last change on this file since 3909 was 2384, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.0 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 MCaos.cc \
37 MCosy.cc
38
39SRCS = $(SRCFILES)
40HEADERS = $(SRCFILES:.cc=.h)
41OBJS = $(SRCFILES:.cc=.o)
42CINTHEADERS = $(HEADERS)
43
44############################################################
45
46all: $(LIB)
47
48include ../Makefile.rules
49
50clean: rmlib rmcint rmobjs rmcore
51
52mrproper: clean rmbak
53
54# @endcode
55
Note: See TracBrowser for help on using the repository browser.