root/trunk/Makefile.in

Revision 1439, 372 bytes (checked in by jesus, 3 days ago)

distclean from Marti Raudsepp

Line 
1 all:
2         (cd src && make)
3         (cd test && make)
4
5 install:        all
6         (cd src && make install DESTDIR=$(DESTDIR))
7         (cd sql && make install DESTDIR=$(DESTDIR))
8
9 clean:
10         (cd src && make clean)
11         (cd sql && make clean)
12         (cd test && make clean)
13
14 distclean:      clean
15         rm -f Makefile config.status config.log
16         (cd src && make distclean)
17         (cd sql && make distclean)
18         (cd test && make distclean)
Note: See TracBrowser for help on using the browser.