:pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Tue Nov 27 22:58 CET 2001
[gnokii.git] / win32 / Makefile
1
2 #
3 # Makefile for the GNOKII tool suite.
4 #
5 # Copyright (C) 1999 Hugh Blemings & Pavel Janík ml.
6 #               2000 Karel Zak
7 #
8
9
10 TOPDIR=..
11 include $(TOPDIR)/Makefile.global
12
13 OBJS =  getopt.o \
14         winserial.o
15
16 all: $(OBJS)
17
18 clean:
19         $(RM) $(OBJS) *~ depend
20
21 depend dep:
22         $(CC) $(CFLAGS) -MM *.c >depend
23
24 install:
25         @echo   
26
27 ifeq (depend,$(wildcard depend))
28 include depend
29 endif
30
31 .PHONY: all install clean dep depend