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

Last change on this file since 463 was 463, checked in by harald, 24 years ago
The first implementation of a gui to test the data of Octobertest was implemented. Therefore the two subdirs mgui and mdatacheck were introduced. The program for the gui is called -> mars <-.
File size: 1.1 KB
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 $(PROGRAMS) 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 mgui"
52 @cd mgui; make mrproper; cd ..
53 @echo "cd .."
54 @echo "cd mdatacheck"
55 @cd mdatacheck; make mrproper; cd ..
56 @echo "cd .."
57# @echo "cd mocttest"
58# @cd mocttest; make mrproper; cd ..
59# @echo "cd .."
60
61
62
Note: See TracBrowser for help on using the repository browser.