source: trunk/MagicSoft/Mars/Makefile.rules@ 458

Last change on this file since 458 was 454, checked in by harald, 24 years ago
Import the first sources of the MAGIC Analysis and Reconstruction Software. T. Bretz and H. Kornmayer 20.December 2000
File size: 992 bytes
Line 
1
2depend:
3 @makedepend $(SRCS) $(INCLUDES) -I$(INCLUDE_CPLUS) $(ROOTCFLAGS) \
4 -f Makefile.depend 2> kk.kk ; cat kk.kk
5
6.cxx.o:
7 @echo "Compiling " $<
8 $(CXX) $(CXXFLAGS) -c $< -o $@
9
10.cc.o:
11 @echo "Compiling " $<
12 $(CXX) $(CXXFLAGS) -c $< -o $@
13
14.c.o:
15 @echo "Compiling " $<
16 $(CC) $(CFLAGS) -c $< -o $@
17#
18# The cleaning facility
19#
20
21rmcint:
22 @echo "Removing cint-stuff..."
23 @rm -f *Cint.*
24
25rmlib:
26 @echo "Removing libraries..."
27 @rm -f lib/lib*.a
28
29rmobjs:
30 @echo "Removing object files..."
31 @rm -f *.o
32
33rmcore:
34 @echo "Removing core files..."
35 @rm -f core*
36
37rmbin:
38 @echo "Removing binary files..."
39 @rm -f $(PROGRAM1) $(PROGRAM2) lib/$(SOLIB) so_locations
40
41mrproper: clean
42 @echo "Removing *~ *.bak kk.kk htmldoc/..."
43 @rm -f *~ kk.kk *.bak macros/*~
44 @rm -rf htmldoc
45 @echo "cd mbase"
46 @cd mbase; make mrproper; cd ..
47 @echo "cd .."
48 @echo "cd mraw"
49 @cd mraw; make mrproper; cd ..
50 @echo "cd .."
51# @echo "cd mocttest"
52# @cd mocttest; make mrproper; cd ..
53# @echo "cd .."
54
55
56
Note: See TracBrowser for help on using the repository browser.