mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +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
35 lines
613 B
Makefile
35 lines
613 B
Makefile
# $Id: makefile,v 1.9 2003/09/12 17:51:48 vizzini Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = psapi
|
|
|
|
TARGET_SDKLIBS = epsapi.a ntdll.a kernel32.a
|
|
|
|
TARGET_CFLAGS = -I./include -Wall -Werror
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|
|
|
TARGET_LFLAGS = -nostartfiles -nostdlib
|
|
|
|
TARGET_BASE = 0x68F70000
|
|
|
|
TARGET_OBJECTS = \
|
|
misc/dllmain.o \
|
|
misc/malloc.o \
|
|
misc/stubs.o \
|
|
misc/win32.o
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
# EOF
|