summaryrefslogtreecommitdiff
path: root/win32/source/Makefile
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2004-06-21 10:37:49 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2004-06-21 10:37:49 +0000
commitd94ec889227d544683964d3efff23362c6550434 (patch)
treec2f6c7067b134dfc12b53dec559bf96bb0b6afc2 /win32/source/Makefile
parent4dc8bf7380539092dba9c94caa5ebba088fd112b (diff)
downloadxine-lib-d94ec889227d544683964d3efff23362c6550434.tar.gz
xine-lib-d94ec889227d544683964d3efff23362c6550434.tar.bz2
Move win32 frontend from xine-lib.
CVS patchset: 6721 CVS date: 2004/06/21 10:37:49
Diffstat (limited to 'win32/source/Makefile')
-rwxr-xr-xwin32/source/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/win32/source/Makefile b/win32/source/Makefile
deleted file mode 100755
index 3118565d1..000000000
--- a/win32/source/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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` -c $<