source: vis_dev/dev/Makefile @ 18

Last change on this file since 18 was 15, checked in by cecile, 13 years ago

Vis main file for expermeriments

File size: 373 bytes
Line 
1LIBGLUDIR=../glu-2.3/
2LIBVISDIR=../vis-2.3/
3INCVISDIR=${LIBVISDIR}/include/
4INCGLUDIR=${LIBGLUDIR}/include/
5
6a.out : main.c utilities.o
7        gcc main.c -lm -L$(LIBGLUDIR) -lglu -L$(LIBVISDIR) -lvis2  -I$(INCVISDIR) -I$(INCGLUDIR)
8
9utilities.o : utilities.c
10        gcc -c utilities.c -lm -L$(LIBGLUDIR) -lglu -L$(LIBVISDIR) -lvis2  -I$(INCVISDIR) -I$(INCGLUDIR)
11clean:
12        rm *.o a.out
Note: See TracBrowser for help on using the repository browser.