~ubuntu-branches/ubuntu/vivid/cctools/vivid

« back to all changes in this revision

Viewing changes to wavefront/src/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2011-05-07 09:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110507090500-lqpmdtwndor6e7os
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CCTOOLS_HOME = ../../
 
2
 
 
3
include ${CCTOOLS_HOME}/Makefile.config
 
4
include ${CCTOOLS_HOME}/Makefile.rules
 
5
 
 
6
TARGETS =  wavefront wavefront_master
 
7
 
 
8
LOCAL_LDFLAGS=-ldttools ${CCTOOLS_INTERNAL_LDFLAGS}
 
9
 
 
10
all: ${TARGETS}
 
11
 
 
12
 
 
13
wavefront: wavefront.o 
 
14
        ${CCTOOLS_LD} $^ ${LOCAL_LDFLAGS} -o $@
 
15
 
 
16
wavefront_master: wavefront_master.o 
 
17
        ${CCTOOLS_LD} $^ ${LOCAL_LDFLAGS} -o $@
 
18
 
 
19
test:
 
20
 
 
21
clean:
 
22
        rm -f core *~ *.o *.a ${TARGETS} 
 
23
 
 
24
install: all
 
25
        install -d ${CCTOOLS_INSTALL_DIR}/
 
26
        install -d ${CCTOOLS_INSTALL_DIR}/bin
 
27
        install wavefront ${CCTOOLS_INSTALL_DIR}/bin
 
28
        install wavefront_master ${CCTOOLS_INSTALL_DIR}/bin
 
29