Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# @configure_input@
wims_home=../../..
cc=@CC@
cflags=@CFLAGS@ -Wall
defines=@DEFINES@
lopt=-lm
LDFLAGS =
all: toascii
clean:
rm -f *.o *.core *.stackdump toascii
toascii: toascii.c
$(cc) $(cflags) $(LDFLAGS) -o toascii toascii.c $(lopt)