mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 04:53:04 +00:00

patch changes: 1.add mswsock.dll with stubs for allmost all functions (1 or 2 I cant get prototype of) 2.add some definitions to various header files 3.add some stubs to advapi32.dll 4.add a stub for GdiInitializeLanguagePack to gdi32.dll 5.add some stubs to iphlpapi.dll 6.add some stubs to kernel32.dll 7.add some stubs to ntdll.dll 8.add some stubs to ws2_32.dll 9.add some stub definitions to wsock32.dll 10.change wsock32.dll so that most functions redirect to ws2_32.dll or mswsock.dll (which is how microsoft does it) 11.turn -Wall -Werror on for cards 12.turn -Wall -Werror on for epsapi 13.turn -Wall -Werror on for fmifs and fix problems that resulted 14.turn -Wall -Werror on for freetype 15.turn -Wall -Werror on for vfatlib and fix problems that resulted 15.turn -Wall -Werror on for kernel32 and fix problems that resulted 16.turn -Wall -Werror on for ntdll and fix problems that resulted 17.turn -Wall -Werror on for lzexpand 18.turn -Wall -Werror on for msafd 19.turn -Wall -Werror on for psapi 20.turn -Wall -Werror on for twain 21.add some stubs to user32.dll 22.turn -Wall -Werror on for version 23.turn -Wall -Werror on for wshirda svn path=/trunk/; revision=6055
28 lines
528 B
Makefile
28 lines
528 B
Makefile
# $Id: makefile,v 1.13 2003/09/12 17:51:48 vizzini Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = version
|
|
|
|
TARGET_BASE = 0x77a90000
|
|
|
|
TARGET_CFLAGS = -fno-builtin -Werror -Wall
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|
|
|
TARGET_LFLAGS = -nostdlib -nostartfiles
|
|
|
|
TARGET_SDKLIBS = kernel32.a ntdll.a
|
|
|
|
TARGET_OBJECTS = misc/libmain.o misc/stubs.o
|
|
|
|
TARGET_CLEAN = misc/*.o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|