:pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Sun Nov 25 22:56 CET 2001
[gnokii.git] / common / phones / Makefile
1
2 #
3 # $Id$
4 #
5 # Makefile for the GNOKII tool suite.
6 #
7 # Copyright (C) 1999 Hugh Blemings & Pavel Janík ml.
8 #               2000 Karel Zak
9 #
10
11 #
12 # For this common directory is used "subsystem.o" .o files concept.
13 #   (the list of object files to be linked together (to COMMON.o),
14 #   and other dirs is used this _one_ file (instead of all OBJS)
15 #
16
17 TOPDIR=../..
18 include $(TOPDIR)/Makefile.global
19
20 OBJS =  generic.o \
21         nokia.o \
22         nk7110.o \
23         nk6100.o \
24         nk3110.o \
25         nk2110.o \
26         atgen.o \
27         ateric.o \
28         atnok.o \
29         atsie.o
30 #       dc2711.o
31
32 all: PHONES.o
33
34 PHONES.o: $(OBJS)
35         $(LD) PHONES.o $(OBJS)
36
37 clean:
38         $(RM) $(OBJS) *~ depend PHONES.o
39
40 install:
41         @echo
42
43 depend dep:
44         $(CC) $(CFLAGS) -MM *.c >depend
45
46 ifeq (depend,$(wildcard depend))
47 include depend
48 endif
49
50
51 .PHONY: all install clean dep depend
52