~ubuntu-branches/ubuntu/warty/dnprogs/warty

« back to all changes in this revision

Viewing changes to dnroute/netlink/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Caulfield
  • Date: 2004-05-30 10:13:57 UTC
  • Revision ID: james.westby@ubuntu.com-20040530101357-1geqhhh0teccu0cm
Tags: 2.27
* Fix signal handling in sethost so it doesn't die with an embarrassing
  "Alarm clock" message.
* Add dependancy on modutils. Closes: #251508

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
NLOBJ=ll_map.o libnetlink.o
 
3
 
 
4
CFLAGS+=-Iinclude
 
5
 
 
6
all: libnetlink.a # libutil.a
 
7
 
 
8
libnetlink.a: $(NLOBJ)
 
9
        ar rcs $@ $(NLOBJ)
 
10
 
 
11
clean:
 
12
        rm -f $(NLOBJ) $(ADDLIB) libnetlink.a
 
13