source: trunk/examples/objects/path/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.4 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../../../src/core \
21                  -I../../../src/objects \
22                  -I$(srcdir)/../../../src/core \
23                  -I$(srcdir)/../../../src/objects \
24                  -I$(includedir)
25LIBS    = \
26                -L../../../src/core -lrappture \
27                -L../../../src/objects -lRpObjects\
28                -L$(libdir) -lexpat -lz -lm
29VPATH   = $(srcdir)
30
31CXX_SWITCHES    = $(CXXFLAGS) $(INCLUDES) $(DEFINES)
32CC_SWITCHES     = $(CFLAGS) $(INCLUDES) $(DEFINES)
33
34FILES   = \
35                $(srcdir)/path.cc \
36                Makefile
37
38destdir = $(prefix)/examples/objects/path
39
40
41PROGS   = \
42                path
43
44.PHONY: all install clean distclean
45
46all: $(PROGS)
47
48path: $(srcdir)/path.cc
49        $(CXX) $(CXX_SWITCHES) -o $@ $< $(LIBS)
50
51install: all
52        $(MKDIR_P) -m 0755 $(destdir)
53        for i in $(FILES) ; do \
54          $(INSTALL) -m 0444  $$i $(destdir) ; \
55        done
56        for i in $(PROGS) ; do \
57          $(INSTALL) -m 0555 $$i $(destdir) ; \
58        done
59
60clean:
61        $(RM) $(PROGS)
62
63distclean: clean
64        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.