From 30e9c39c8f141bd8f1d73ed0771503f2e3ecd5e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Sat, 3 Jan 2004 20:36:09 +0000 Subject: Makefile for compiling win32 xineui under cygwin against already installed libxine. Don't use common.h in include/ directory, there it's together with helping system files and CygWin wouldn't be happy. CVS patchset: 5985 CVS date: 2004/01/03 20:36:09 --- win32/source/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 win32/source/Makefile (limited to 'win32/source/Makefile') diff --git a/win32/source/Makefile b/win32/source/Makefile new file mode 100755 index 000000000..e36aab3cd --- /dev/null +++ b/win32/source/Makefile @@ -0,0 +1,17 @@ +# Makefile for compilation xineui under cygwin. +# It requires installed libxine1. + +OBJS = main.o wnd.ctrl.o wnd.panel.o wnd.playlist.o wnd.video.o xineui.o resource.o +CFLAGS=-g -O2 + +all: $(OBJS) + $(CXX) $(OBJS) `xine-config --libs` -luser32 -lgdi32 -lcomdlg32 -lcomctl32 -o xineui + +resource.o: resource.rc + windres -i $< -o $@ + +clean: + -$(RM) $(OBJS) *.exe *~ + +.cpp.o: + $(CC) -W -Wall $(CFLAGS) `xine-config --cflags` -I../include -c $< -- cgit v1.2.3