~ubuntu-branches/ubuntu/saucy/wpasupplicant/saucy

« back to all changes in this revision

Viewing changes to src/radius/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-11-22 09:43:43 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122094343-qgsxaojvmswfri77
Tags: 0.7.3-0ubuntu1
* Get wpasupplicant 0.7.3 from Debian's SVN. Leaving 0.7.3-1 as unreleased
  for now.
* Build-Depend on debhelper 8, since the packaging from Debian uses compat 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all:
2
 
        @echo Nothing to be made.
 
1
all: libradius.a
3
2
 
4
3
clean:
5
 
        for d in $(SUBDIRS); do make -C $$d clean; done
6
 
        rm -f *~ *.o *.d
 
4
        rm -f *~ *.o *.d libradius.a
7
5
 
8
6
install:
9
7
        @echo Nothing to be made.
 
8
 
 
9
 
 
10
include ../lib.rules
 
11
 
 
12
CFLAGS += -DCONFIG_IPV6
 
13
 
 
14
LIB_OBJS= \
 
15
        radius.o \
 
16
        radius_client.o \
 
17
        radius_server.o
 
18
 
 
19
libradius.a: $(LIB_OBJS)
 
20
        $(AR) crT $@ $?
 
21
 
 
22
-include $(OBJS:%.o=%.d)