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

Last change on this file since 921 was 920, checked in by tbretz, 23 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..
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 MThread.cc \
36 MTimeout.cc \
37 msgqueue.cc \
38 MLog.cc \
39 MLogManip.cc \
40 timer.cc
41
42CINTHEADERS = MLog.h \
43 MLogManip.h
44
45SRCS = $(SRCFILES)
46HEADERS = $(SRCFILES:.cc=.h)
47OBJS = $(SRCFILES:.cc=.o)
48
49############################################################
50
51all: $(LIB)
52
53include ../Makefile.rules
54
55clean: rmlib rmcint rmobjs rmcore
56
57mrproper: clean rmbak
58
59# @endcode
60
Note: See TracBrowser for help on using the repository browser.