~ubuntu-branches/ubuntu/natty/9base/natty

« back to all changes in this revision

Viewing changes to std.mk

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-08-20 17:34:06 UTC
  • mfrom: (6.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090820173406-xpwqa9ruyevvc0ut
Tags: 1:3-3
* Updating maintainer field.
* Updating vcs fields.
* Updating package to standards version 3.8.3.
* Updatin variables writing in rules to consistent style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
include ../config.mk
7
7
 
8
8
all: ${TARG}
 
9
        @strip ${TARG}
9
10
        @echo built ${TARG}
10
11
 
11
12
install: ${TARG}
22
23
 
23
24
.c.o:
24
25
        @echo CC $*.c
25
 
        @${CC} ${CFLAGS} -I../lib9 -I${PREFIX}/include -I../lib9 $*.c
 
26
        @${CC} ${CFLAGS} -I../lib9 -I../lib9 $*.c
26
27
 
27
28
clean:
28
29
        rm -f ${OFILES} ${TARG}
29
30
 
30
31
${TARG}: ${OFILES}
31
32
        @echo LD ${TARG}
32
 
        @${CC} ${LDFLAGS} -o ${TARG} ${OFILES} -L${PREFIX}/lib -L../lib9 -l9
 
33
        @${CC} ${LDFLAGS} -o ${TARG} ${OFILES} -L../lib9 -l9