Subversion Repositories wimsdev

Rev

Rev 3520 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3519 schaersvoo 1
# @configure_input@
2
 
3
wims_home=../../..
4
cc=@CC@
5
cflags=@CFLAGS@ -Wall
6776 georgesk 6
LDFLAGS=@LDFLAGS@
7
CPPFLAGS=@CPPFLAGS@
8
 
3519 schaersvoo 9
defines=@DEFINES@
10
lopt=-lm
11
 
12
all: moneyprint
13
 
14
clean:
15
	rm -f *.o *.core *.stackdump moneyprint
16
 
17
moneyprint: moneyprint.c
6776 georgesk 18
	$(cc) $(cflags) $(CPPFLAGS) $(LDFLAGS) -o moneyprint moneyprint.c $(lopt)