ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/basex/Makefile
Revision: 1.1
Committed: Tue Jun 26 15:18:19 2001 UTC (23 years, 11 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1
2
3 all: basex
4
5 basex: basex.c
6 $(CC) -O6 -funroll-all-loops -pedantic -Wall basex.c -o basex
7
8 install: basex
9 strip basex
10 mv basex /usr/app/bin
11 chmod 755 /usr/app/bin/basex
12
13 clean:
14 rm -f basex
15
16