source: branches/blt4/examples/showdata/Makefile @ 3957

Last change on this file since 3957 was 3957, checked in by gah, 11 years ago

sync with trunk

File size: 426 bytes
Line 
1FC              = gfortran
2FCFLAGS         =
3FCDEBUGFLAGS    = -Wall -g
4INCLUDES        = -I/apps/rappture/dev/include
5LIBS            = -L/apps/rappture/dev/lib -lrappture -lexpat -lz -lm
6
7FC_SWITCHES     = $(FCFLAGS) $(FCDEBUGFLAGS) $(INCLUDES)
8
9.PHONY: all install clean distclean
10
11all: showdata
12
13showdata: showdata.f
14        $(FC) $(FC_SWITCHES) $< -o $@ $(LIBS)
15
16install: all
17
18clean:
19        $(RM) showdata run*.xml
20
21distclean: clean
22
Note: See TracBrowser for help on using the repository browser.