summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/mplayer/Makefile')
-rw-r--r--Gui/mplayer/Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/Gui/mplayer/Makefile b/Gui/mplayer/Makefile
new file mode 100644
index 0000000000..e586a5cc26
--- /dev/null
+++ b/Gui/mplayer/Makefile
@@ -0,0 +1,45 @@
+
+include ../../config.mak
+include ../config.mak
+
+include ../bitmap/bitmap.mak
+include ../gui.mak
+
+LIB = mplayer
+
+INCDIR = -I. -I../event -I../wm -I../skin $(GTKINC)
+
+OPTIMIZE = $(OPTFLAGS) -fomit-frame-pointer \
+ -fexpensive-optimizations -malign-double -fschedule-insns2 -mwide-multiply -Wall
+
+CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG)
+
+.SUFFIXES: .c .o
+
+.c.o:
+ $(CC) -c $(CFLAGS) -o $@ $<
+
+### TARGETS ###
+
+default: .depend $(MPLAYEROBJS)
+
+all: default
+
+clean:
+ rm -rf $(MPLAYEROBJS) *.o *~ *.bak .depend
+
+distclean: clean
+
+dep: depend
+
+depend: .depend
+
+.depend: Makefile ../config.mak ../config.h ../gui.mak ../bitmap/bitmap.mak
+ $(CC) -MM $(CFLAGS) $(MPLAYERSRCS) 1>.depend
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif