3991
|
1 LIBNAME = libvidix.a
|
4030
|
2 SUBDIRS = drivers
|
|
3 DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
|
3991
|
4
|
|
5 include ../config.mak
|
|
6
|
|
7 SRCS = vidixlib.c
|
|
8 OBJS = $(SRCS:.c=.o)
|
|
9
|
|
10 CFLAGS = $(OPTFLAGS) -W -Wall
|
|
11
|
|
12 .SUFFIXES: .c .o
|
|
13
|
|
14 # .PHONY: all clean
|
|
15
|
|
16 .c.o:
|
|
17 $(CC) -c $(CFLAGS) -o $@ $<
|
|
18
|
4030
|
19 all: $(SUBDIRS) $(LIBNAME)
|
|
20 $(DO_MAKE)
|
|
21
|
3991
|
22 $(LIBNAME): $(OBJS)
|
|
23 $(AR) r $(LIBNAME) $(OBJS)
|
|
24
|
|
25
|
|
26 clean:
|
|
27 rm -f *.o *.a *~
|
4030
|
28 $(DO_MAKE)
|
3991
|
29
|
|
30 distclean:
|
|
31 rm -f test *.o *.a *~ .depend
|
4030
|
32 $(DO_MAKE)
|
3991
|
33
|
|
34 dep: depend
|
4030
|
35 $(DO_MAKE)
|
3991
|
36
|
|
37 depend:
|
|
38 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
39
|
4030
|
40 install:
|
|
41 $(DO_MAKE)
|
|
42
|
3991
|
43 #
|
|
44 # include dependency files if they exist
|
|
45 #
|
|
46 ifneq ($(wildcard .depend),)
|
|
47 include .depend
|
|
48 endif
|