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

« back to all changes in this revision

Viewing changes to src/utils/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: libutils.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 libutils.a
7
5
 
8
6
install:
9
7
        @echo Nothing to be made.
 
8
 
 
9
 
 
10
include ../lib.rules
 
11
 
 
12
#CFLAGS += -DWPA_TRACE
 
13
CFLAGS += -DCONFIG_IPV6
 
14
 
 
15
LIB_OBJS= \
 
16
        base64.o \
 
17
        common.o \
 
18
        ip_addr.o \
 
19
        radiotap.o \
 
20
        trace.o \
 
21
        uuid.o \
 
22
        wpa_debug.o \
 
23
        wpabuf.o
 
24
 
 
25
# Pick correct OS wrapper implementation
 
26
LIB_OBJS += os_unix.o
 
27
 
 
28
# Pick correct event loop implementation
 
29
LIB_OBJS += eloop.o
 
30
 
 
31
#LIB_OBJS += pcsc_funcs.o
 
32
 
 
33
libutils.a: $(LIB_OBJS)
 
34
        $(AR) crT $@ $?
 
35
 
 
36
-include $(OBJS:%.o=%.d)