~ubuntu-branches/ubuntu/lucid/openbsd-inetd/lucid

« back to all changes in this revision

Viewing changes to Makefile.debian

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2009-12-31 05:01:54 UTC
  • mfrom: (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091231050154-ocsys00bjcx1py53
Tags: 0.20080125-4ubuntu1
* Merge from debian testing.  Remaining changes:
  - Update maintainer according to spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CFLAGS := -O2 -g
2
 
 
3
 
DEFS := -DLIBWRAP
4
 
LIBS := -lwrap
5
 
 
6
 
inetd_OBJECTS := inetd.o setproctitle.o strlcpy.o
7
 
 
8
 
all: inetd
9
 
 
10
 
.c.o:
11
 
        $(CC) $(DEFS) $(CFLAGS) -c $<
12
 
 
13
 
inetd: $(inetd_OBJECTS)
14
 
        $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
15
 
 
16
 
clean:
17
 
        rm -f inetd inetd.o setproctitle.o strlcpy.o
18