8197
|
1
|
|
2 include ../config.mak
|
|
3
|
|
4 LIBNAME = libmenu.a
|
|
5
|
|
6 SRCS= menu.c vf_menu.c menu_cmdlist.c menu_pt.c menu_list.c menu_filesel.c menu_txt.c menu_console.c menu_param.c
|
|
7 OBJS=$(SRCS:.c=.o)
|
|
8
|
|
9 CFLAGS = $(OPTFLAGS) -I. -I.. -I../libmpcodecs $(EXTRA_INC) -Wall
|
|
10
|
|
11 .SUFFIXES: .c .o
|
|
12
|
|
13
|
|
14 .c.o:
|
|
15 $(CC) -c $(CFLAGS) -o $@ $<
|
|
16
|
|
17 $(LIBNAME): $(OBJS)
|
|
18 $(AR) r $(LIBNAME) $(OBJS)
|
|
19
|
|
20 all: $(LIBNAME)
|
|
21
|
|
22 clean:
|
|
23 rm -f *.o *.a *~
|
|
24
|
|
25 distclean:
|
|
26 rm -f Makefile.bak *.o *.a *~ .depend
|
|
27
|
|
28 dep: depend
|
|
29
|
|
30 depend:
|
|
31 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
32
|
|
33 #
|
|
34 # include dependency files if they exist
|
|
35 #
|
|
36 ifneq ($(wildcard .depend),)
|
|
37 include .depend
|
|
38 endif
|