source: trunk/MagicSoft/MarsOctober/Makefile.rules@ 735

Last change on this file since 735 was 447, checked in by harald, 24 years ago
Bringing the sources for the octobertest under CVS controll. (november, 3rd, 2000)
  • Property svn:executable set to *
File size: 965 bytes
Line 
1
2depend:
3 @makedepend $(SRCS) $(INCLUDES) -I$(INCLUDE_CPLUS) $(ROOTCFLAGS) \
4 -fMakefile.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*.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 $(PROGRAM) $(SOLIB) so_locations
40
41mrproper: clean
42 @echo "Removing *~ *.bak kk.kk html/..."
43 @rm -f *~ kk.kk *.bak
44 @rm -rf html
45 @echo "cd mbase"
46 @cd mbase; make mrproper; cd ..
47 @echo "cd .."
48 @echo "cd mrootformat"
49 @cd mrootformat; 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.