source: trunk/examples/showdata/Makefile @ 2529

Last change on this file since 2529 was 2529, checked in by dkearney, 13 years ago

updating the fortran showdata example and the c++ getFile and fortran's
rp_lib_get_file functions to correctly return the number of bytes written to
the file.

File size: 394 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
9all: showdata
10
11showdata: showdata.f
12        $(FC) $(FC_SWITCHES) $< -o $@ $(LIBS)
13
14install: showdata
15
16clean:
17        $(RM) showdata run*.xml
18
19distclean: clean
20
Note: See TracBrowser for help on using the repository browser.