source: main/trunk/greenstone2/build-src/packages/isis-gdl/Makefile.in@ 26670

Last change on this file since 26670 was 8751, checked in by jrm21, 19 years ago

use $CXXFLAGS when compiling, and explicitly use -o for output name

  • Property svn:keywords set to Author Date Id Revision
File size: 712 bytes
Line 
1prefix = @prefix@
2exec_prefix = @exec_prefix@
3bindir = @bindir@
4
5CXX = @CXX@
6CXXFLAGS = @CXXFLAGS@
7EXEEXT = @EXEEXT@
8
9INSTALL = @INSTALL@
10
11LDFLAGS = @LDFLAGS@
12
13ISIS_OBJS = IsisGdl.o CacheMan.o Checking.o CRC32.o Fdt.o File.o \
14 FileSystem.o IErrors.o IsisDb.o IsisUtil.o Master.o MFFile.o \
15 stdafx.o Unimarc.o XRFFile.o
16
17
18all: IsisGdl$(EXEEXT)
19
20IsisGdl$(EXEEXT): $(ISIS_OBJS)
21 $(CXX) -o IsisGdl$(EXEEXT) $(ISIS_OBJS) $(LDFLAGS)
22
23$(ISIS_OBJS) :%.o :%.cpp
24 $(CXX) -c $(CXXFLAGS) -o $@ $<
25
26install: all
27 $(INSTALL) IsisGdl$(EXEEXT) $(bindir)
28
29clean:
30 rm -f IsisGdl$(EXEEXT) $(ISIS_OBJS)
31
32distclean: clean
33 rm -f Makefile config.status config.cache config.log
Note: See TracBrowser for help on using the repository browser.