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

Last change on this file since 1815 was 1759, 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..
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 MStar.cc \
39 MStarList.cc \
40 msgqueue.cc \
41 MLog.cc \
42 MLogManip.cc \
43 MObservatory.cc \
44 MGList.cc \
45 timer.cc
46
47CINTHEADERS = MStar.h \
48 MGList.h \
49 MLog.h \
50 MLogManip.h \
51 MObservatory.h \
52 MParContainer.h
53
54SRCS = $(SRCFILES)
55HEADERS = $(SRCFILES:.cc=.h)
56OBJS = $(SRCFILES:.cc=.o)
57
58############################################################
59
60all: $(LIB)
61
62include ../Makefile.rules
63
64clean: rmlib rmcint rmobjs rmcore
65
66mrproper: clean rmbak
67
68# @endcode
69
Note: See TracBrowser for help on using the repository browser.