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

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