source: trunk/examples/objects/floatBuffer/Makefile.in @ 3471

Last change on this file since 3471 was 3471, checked in by ldelgass, 11 years ago

Makefile fixes: make 'install' target always depend on 'all' target. This
ensures that an up to date build exists before installing, and also permits
the use of "make install" in place of "make all install" or "make all; make install". It doesn't affect the existing build scripts. Likewise, make 'distclean'
always depend on 'clean'. Remove empty contour objects example, as there is no
corresponding object class. Also declare all the standard targets 'all, install,
etc' in the .PHONY section for performance.

File size: 1.1 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11
12INSTALL         = @INSTALL@
13MKDIR_P         = @MKDIR_P@
14
15CC              = @CC@
16CFLAGS          = @CFLAGS@
17CXX             = @CXX@
18CXXFLAGS        = @CFLAGS@
19DEFINES         = -g -Wall
20INCLUDES        = -I$(srcdir)/../../../src/core \
21                  -I$(includedir)
22LIBS            = \
23                -L../../../src/core -lrappture \
24                -L$(libdir) -lexpat -lz -lm
25VPATH           = $(srcdir)
26
27CXX_SWITCHES    = $(CXXFLAGS) $(INCLUDES) $(DEFINES)   
28CC_SWITCHES     = $(CFLAGS) $(INCLUDES) $(DEFINES)     
29
30FILES           = \
31                $(srcdir)/floatBuffer.cc \
32                Makefile
33
34destdir         = $(prefix)/examples/objects/floatBuffer
35
36PROGS           = \
37                floatbuffer \
38
39.PHONY: all install clean distclean
40
41all: $(PROGS)
42
43
44floatbuffer: $(srcdir)/floatBuffer.cc
45        $(CXX) $(CXX_SWITCHES) -o $@ $< $(LIBS)
46
47install: all
48        $(MKDIR_P) -m 0755 $(destdir)
49        for i in $(FILES) ; do \
50          $(INSTALL) -m 0444  $$i $(destdir) ; \
51        done
52        for i in $(PROGS) ; do \
53          $(INSTALL) -m 0555 $$i $(destdir) ; \
54        done
55
56clean:
57        $(RM) $(PROGS)
58
59distclean: clean
60        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.