mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
8664b890b0
Fri Apr 5 15:22:55 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [controls/button.c] [controls/static.c] Changes to use WND * wherever possible. * [debugger/dbg.y] [debugger/debug.l] Added 'info module' and 'walk module' commands. * [if1632/Makefile.in] [if1632/relay.c] [tools/build.c] Added assembly code generation to call from Wine into 32-bit code. Changed all 'call32' references in 'callfrom16' to avoid confusion with Win32 routines. * [include/callback.h] Added prototypes for 32-bit callbacks. * [loader/module.c] [if1632/relay32.c] [tools/build.c] Unified 16- and 32-bit modules. The fake module for 32-bit DLLs is now generated by the build program. * [include/module.h] Added extra info to NE_MODULE for Win32 modules to point to the PE module data. * [include/pe_image.h] [loader/pe_image.c] [win32/resource.c] Removed the wine_files list. The PE data for a module can now be accessed with the NE_WIN32_MODULE macro. * [loader/signal.c] [miscemu/instr.c] Don't start the BIOS timer at startup, but only after an access to the 0x40 segment. * [memory/local.c] Changed LOCAL_Lock() to return a 32-bit pointer. * [misc/main.c] [include/dlls.h] Some built-in DLLs (like KERNEL) can no longer be disabled from the command-line. Thu Apr 4 19:54:39 1996 Keith Reynolds <keithr@sco.COM> * [*/*] A lot of small changes to support SCO OpenServer 5. Thu Apr 4 15:38:13 1996 Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl> * [controls/edit.c] Fixed GetKeyState() call to use 0x8000 convention. * [include/windows.h] Added undocumented messages EM_SCROLL and EM_GETTHUMB. Thu Apr 4 09:52:52 1996 John Harvey <john@division.co.uk> * [if1632/except.S] Modified code to assemble on unixware. Wed Apr 3 09:38:26 1996 Juergen Marquardt <marqu@lunar.advantest.de> * [objects/font.c] Implementation of a second font cache which will be updated dynamically. Mon Apr 1 16:47:40 1996 Robert Pouliot <krynos@qbc.clic.net> * [resources/sysres_Cz.rc] [resources/sysres_Da.rc] [resources/sysres_De.rc] [resources/sysres_Eo.rc] [resources/sysres_Es.rc] [resources/sysres_Fi.rc] [resources/sysres_No.rc] [resources/TODO] Updated FIND_TEXT and REPLACE_TEXT to work like the English version.
145 lines
3.2 KiB
Makefile
145 lines
3.2 KiB
Makefile
# This Makefile understands the following targets:
|
|
#
|
|
# all (default): build wine
|
|
# clean: remove all intermediate files
|
|
# distclean: also remove all files created by configure
|
|
# depend: create the dependencies
|
|
# etags: Create a TAGS file for Emacs.
|
|
#
|
|
# Author: Michael Patra <micky@marie.physik.tu-berlin.de>
|
|
# <patra@itp1.physik.tu-berlin.de>
|
|
|
|
# First some useful definitions
|
|
|
|
SHELL = /bin/sh
|
|
CC = @CC@
|
|
CPP = @CPP@
|
|
CFLAGS = @CFLAGS@
|
|
DEFS = @DEFS@ -DWINE_INI_GLOBAL=\"$(WINE_INI_GLOBAL)\"
|
|
X_CFLAGS = @X_CFLAGS@
|
|
X_LIBS = @X_LIBS@
|
|
TOPSRC = @top_srcdir@
|
|
DIVINCL = -I$(TOPSRC)/include
|
|
XPM_LIB = -lXpm
|
|
XLIB = @X_PRE_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@
|
|
LDLIBS = @LDLIBS@
|
|
AR = ar rc
|
|
RANLIB = @RANLIB@
|
|
RM = rm -f
|
|
SUBMAKE = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(CFLAGS)' 'DEFS=$(DEFS)'
|
|
@SET_MAKE@
|
|
|
|
# Installation infos
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
libdir = @libdir@
|
|
sysconfdir = @sysconfdir@
|
|
mandir = @mandir@/man1
|
|
manext = .1
|
|
WINE_INI_GLOBAL = $(sysconfdir)/wine.conf
|
|
|
|
# Main target to build
|
|
|
|
MAIN_TARGET = @MAIN_TARGET@
|
|
|
|
COMMONSUBDIRS = \
|
|
rc \
|
|
controls \
|
|
files \
|
|
ipc \
|
|
loader \
|
|
misc \
|
|
multimedia \
|
|
objects \
|
|
resources \
|
|
win32 \
|
|
windows
|
|
|
|
EMUSUBDIRS = \
|
|
tools \
|
|
debugger \
|
|
debugger/readline \
|
|
if1632 \
|
|
memory \
|
|
miscemu
|
|
|
|
LIBSUBDIRS = library
|
|
|
|
PROGSUBDIRS = libtest programs
|
|
|
|
ALLSUBDIRS = $(COMMONSUBDIRS) $(EMUSUBDIRS) $(LIBSUBDIRS) $(PROGSUBDIRS)
|
|
|
|
COMMONOBJS = \
|
|
controls/controls.o \
|
|
files/files.o \
|
|
ipc/ipc.o \
|
|
loader/loader.o \
|
|
misc/misc.o \
|
|
multimedia/multimedia.o \
|
|
objects/objects.o \
|
|
resources/resources.o \
|
|
win32/win32.o \
|
|
windows/windows.o
|
|
|
|
EMUOBJS = \
|
|
debugger/debugger.o \
|
|
debugger/readline/readline.o \
|
|
if1632/if1632.o \
|
|
memory/memory.o \
|
|
miscemu/miscemu.o
|
|
|
|
LIBOBJS = library/library.o
|
|
|
|
|
|
all: $(MAIN_TARGET)
|
|
|
|
install: install_$(MAIN_TARGET)
|
|
|
|
wine wine.sym: $(COMMONSUBDIRS) $(EMUSUBDIRS) dummy
|
|
$(CC) -o wine $(COMMONOBJS) $(EMUOBJS) $(LDOPTIONS) $(X_LIBS) $(XPM_LIB) $(XLIB) $(LDLIBS)
|
|
nm -n wine | grep -v _compiled >wine.sym
|
|
|
|
install_wine: dummy
|
|
$(INSTALL_PROGRAM) wine $(bindir)/wine
|
|
$(INSTALL_DATA) wine.man $(mandir)/wine$(manext)
|
|
|
|
libwine.a: $(COMMONSUBDIRS) $(LIBSUBDIRS) dummy
|
|
$(RM) $@
|
|
$(AR) $@ $(COMMONOBJS) $(LIBOBJS)
|
|
$(RANLIB) $@
|
|
|
|
install_libwine.a: dummy
|
|
$(INSTALL_DATA) libwine.a $(libdir)
|
|
|
|
libwine.so.1.0: $(COMMONSUBDIRS) $(LIBSUBDIRS) dummy
|
|
$(CC) -shared -Wl,-soname,libwine.so.1 -o$@ $(COMMONOBJS) $(LIBOBJS) $(LDOPTIONS) $(X_LIBS) $(XPM_LIB) $(XLIB) $(LDLIBS)
|
|
|
|
install_libwine.so.1.0: dummy
|
|
$(INSTALL_DATA) libwine.so.1.0 $(libdir)
|
|
|
|
$(ALLSUBDIRS): dummy
|
|
@cd $@; $(SUBMAKE)
|
|
|
|
depend:
|
|
for i in $(ALLSUBDIRS); do (cd $$i; $(MAKE) depend); done
|
|
|
|
etags:
|
|
etags `find . -name '*.[chS]' -print`
|
|
|
|
clean:
|
|
for i in $(ALLSUBDIRS); do (cd $$i; $(MAKE) clean); done
|
|
$(RM) *.o \#*\# *~ *.bak *.orig *.rej *.flc
|
|
$(RM) wine wine.sym libwine.a libwine.so.1.0 TAGS
|
|
(cd include; $(RM) *.o \#*\# *~ *.bak *.orig *.rej *.flc)
|
|
|
|
distclean: clean
|
|
$(RM) config.* Make.rules
|
|
$(RM) `find . \( -name Makefile -o -size 0 \) -print`
|
|
|
|
dummy:
|