blob: ff0311b74c36ae097704dcdcdf2b08da1de768d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
LIB = libgui.a
include ../config.mak
include config.mak
include bitmap/bitmap.mak
MPLAYERDIR = mplayer/
include gui.mak
INCDIR = -I. -I./event -I./wm -I./skin $(GTKINC) $(EXTRA_INC)
OPTIMIZE = $(OPTFLAGS) -fomit-frame-pointer \
-fexpensive-optimizations -fschedule-insns2 -Wall
ifeq ($(TARGET_ARCH_X86),yes)
OPTIMIZE += -malign-double
endif
CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG)
.SUFFIXES: .c .o
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
### TARGETS ###
$(LIB): .depend $(OBJS)
$(MAKE) -C mplayer
rm -f $(LIB)
ar rc $(LIB) $(OBJS) $(MPLAYEROBJS)
all: $(LIB)
clean:
$(MAKE) -C mplayer clean
rm -rf $(OBJS) *.o *~ *.bak main $(PRG) $(LIB) .depend
#dep: depend
#
#depend:
# makedepend -- $(CFLAGS) -- $(SRCS) &>/dev/null
#
distclean: clean
dep: depend
depend: .depend
.depend: Makefile config.mak gui.mak bitmap/bitmap.mak
$(MAKE) -C mplayer depend
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#
# include dependency files if they exist
#
ifneq ($(wildcard .depend),)
include .depend
endif
|