Mercurial > mplayer.hg
view Gui/Makefile @ 7047:4f87cd0f642f
Converted the docs to use proper headings tags.
Headings start at <H1> for sections and decrease one size for each level in
the section hierarchy, thus 2.3.4 is <H3>. Headings without numbering are
<H4> unless they are in a <H5> section, then <H5> also.
author | diego |
---|---|
date | Tue, 20 Aug 2002 00:33:04 +0000 |
parents | 0fa27966ac47 |
children | 0dc9cb756b68 |
line wrap: on
line source
LIB = libgui.a include ../config.mak include config.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) SRCS = wm/ws.c wm/wsconv.c wm/wsxdnd.c app.c events.c interface.c cfg.c \ bitmap/bitmap.c bitmap/tga/tga.c bitmap/bmp/bmp.c bitmap/png/png.c \ skin/skin.c skin/font.c skin/cut.c \ mplayer/mplayer.c mplayer/widgets.c mplayer/play.c \ mplayer/gtk/menu.c mplayer/gtk/mb.c mplayer/gtk/about.c mplayer/gtk/pl.c mplayer/gtk/sb.c mplayer/gtk/fs.c mplayer/gtk/opts.c mplayer/gtk/url.c mplayer/gtk/eq.c OBJS = $(SRCS:.c=.o) .SUFFIXES: .c .o .c.o: $(CC) -c $(CFLAGS) -o $@ $< ### TARGETS ### $(LIB): .depend $(OBJS) rm -f $(LIB) $(AR) rc $(LIB) $(OBJS) $(MPLAYEROBJS) all: $(LIB) 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 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif