source: trunk/MagicSoft/Cosy/base/Makefile@ 3791

Last change on this file since 3791 was 2615, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.3 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..
23
24# @code
25
26CINT = Base
27LIB = base.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = File.cc \
34 MStopwatch.cc \
35 MParContainer.cc \
36 MThread.cc \
37 MTimeout.cc \
38 MTime.cc \
39 MAstro.cc \
40 MStar.cc \
41 MStarList.cc \
42 msgqueue.cc \
43 MLog.cc \
44 MLogManip.cc \
45 MObservatory.cc \
46 MGList.cc
47
48CINTHEADERS = MStar.h \
49 MGList.h \
50 MTime.h \
51 MAstro.h \
52 MLog.h \
53 MLogManip.h \
54 MObservatory.h \
55 MParContainer.h
56
57SRCS = $(SRCFILES)
58HEADERS = $(SRCFILES:.cc=.h)
59OBJS = $(SRCFILES:.cc=.o)
60
61############################################################
62
63all: $(LIB)
64
65include ../Makefile.rules
66
67clean: rmlib rmcint rmobjs rmcore
68
69mrproper: clean rmbak
70
71# @endcode
72
Note: See TracBrowser for help on using the repository browser.