mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 10:59:45 +00:00
![Alexandre Julliard](/assets/img/avatar_default.png)
Sun Apr 28 14:32:43 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [Makefile.in] Subdir memory is now also compiled for Winelib, in order to get the Win32 heap functions. * [if1632/Makefile.in] Renamed winprocs and winprocs32 to wprocs and wprocs32 to avoid DLL names > 8 characters. * [loader/builtin.c] (New file) Grouped all built-in DLLs code in a single file. * [memory/global.c] Use the Win32 heap code instead of malloc() to allocate linear memory. This will help test the heap code. * [memory/local.c] Fixed FreeSelector() to clear DS and ES correctly for huge blocks. * [tools/build.c] [if1632/relay.c] Removed 'id' directive in spec files. For relay debugging, the DLL entry point is now computed from the CS:IP entry point address. Added 'heap' directive to specifiy a local heap for the DLL. USER and GDI heap are now created this way. * [windows/class.c] [include/class.h] Changed the class structure to use pointers instead of handles. Changed Get/SetClassWord/Long to use a switch statement; this allows changing the layout of the CLASS structure. * [windows/win.c] [include/win.h] Use a CLASS * instead of a handle for the window class. Sat Apr 27 18:10:11 Martin von Loewis <loewis@informatik.hu-berlin.de> * [if1632/kernel32.spec] [memory/global.c] [win32/memory.c] [win32/process.c] GetProcessAffinityMask,GlobalLock,IsBadReadPtr,IsBadWritePtr, LocalLock,SetThreadAffinityMask: new relays. * [win32/cursoricon32.c] Return same handle if a cursor is loaded multiple times. Sat Apr 27 15:13:37 1996 Bang Jun Young <bangjy@nownuri.nowcom.co.kr> * [resources/sysres_Ko.rc] Added support for Korean [Ko] language. Fri Apr 26 00:49:05 1996 Huw D. M. Davies <h.davies1@physics.oxford.ac.uk> * [objects/dc.c] [objects/font.c] Fixed problem with SaveDC()/RestoreDC() and font cache 'used' count. * [objects/metafile.c] [objects/dcvalues.c] Fixed broken SetTextAlign() on metafiles. * [objects/metafile.c] Delete objects in handle table at end of PlayMetaFile(). Wed Apr 24 19:21:01 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [if1632/ver.spec] [misc/ver.c] [include/ver.h] (New files) VER.DLL (partially) implemented (VerFindFile,VerInstallFile) [If it doesn't work for you, use -dll -ver and report it to me] * [if1632/user32.spec] [if1632/kernel32.spec] [if1632/shell.spec] [if1632/shell32.spec] [misc/ole2nls.c] [windows/message.c] [windows/graphics.c] Simple win32 functions, where we can just use the win16 counterpart. Misc. stubs. * [misc/lstr.c] Someone reported a _lstrlen(NULL). NULL is a valid argument. Fixed. * [misc/registry.c] Some alloclens were off by 1, one double fclose() fixed. Requesting value 0 of a key with no values returns an error (should we always return a made up value NULL? what does win3.1?) Tue Apr 23 17:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu> * [misc/shell.c] Implemented FindEnvironmentString(), DoEnvironmentSubst(), ExtractIcon(), InternalExtractIcon() and ExtractAssociatedIcon(). * [misc/user.c] Do extensive cleanup on application exit. * [windows/hook.c] [windows/win.c] [windows/class.c] Added miscellaneous cleanup routines. * [controls/menu.c] More efficient popup menu window handling. Mon Apr 22 21:35:22 1996 Albrecht Kleine <kleine@ak.sax.de> * [include/windows.h][objects/oembitmap.c][include/bitmaps/obm_trtype] Added "TT-bitmap" for later usage in a ChooseFont() ownerdraw combobox.
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 \
|
|
memory \
|
|
misc \
|
|
multimedia \
|
|
objects \
|
|
resources \
|
|
win32 \
|
|
windows
|
|
|
|
EMUSUBDIRS = \
|
|
tools \
|
|
debugger \
|
|
debugger/readline \
|
|
if1632 \
|
|
miscemu
|
|
|
|
LIBSUBDIRS = library
|
|
|
|
PROGSUBDIRS = libtest programs
|
|
|
|
ALLSUBDIRS = $(COMMONSUBDIRS) $(EMUSUBDIRS) $(LIBSUBDIRS) $(PROGSUBDIRS)
|
|
|
|
COMMONOBJS = \
|
|
controls/controls.o \
|
|
files/files.o \
|
|
ipc/ipc.o \
|
|
loader/loader.o \
|
|
memory/memory.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 \
|
|
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:
|