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

Last change on this file since 1978 was 1758, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 976 bytes
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
24
25# @code
26
27CINT = Main
28LIB = main.a
29
30#------------------------------------------------------------------------------
31
32.SUFFIXES: .c .cc .cxx .h .hxx .o
33
34SRCFILES = MCosy.cc \
35 MBending.cc
36
37SRCS = $(SRCFILES)
38HEADERS = $(SRCFILES:.cc=.h)
39OBJS = $(SRCFILES:.cc=.o)
40CINTHEADERS = $(HEADERS)
41
42############################################################
43
44all: $(LIB)
45
46include ../Makefile.rules
47
48clean: rmlib rmcint rmobjs rmcore
49
50mrproper: clean rmbak
51
52# @endcode
53
Note: See TracBrowser for help on using the repository browser.