mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 07:56:59 +00:00
precompiled header support for GCC 3.4.1
svn path=/trunk/; revision=10194
This commit is contained in:
parent
9e08323787
commit
04642b4ea7
2 changed files with 113 additions and 0 deletions
|
@ -23,3 +23,4 @@ WineRelease
|
||||||
*.suo
|
*.suo
|
||||||
buildno.h
|
buildno.h
|
||||||
notifyhook.dll
|
notifyhook.dll
|
||||||
|
*.gch
|
||||||
|
|
112
reactos/subsys/system/explorer/Makefile.PCH
Normal file
112
reactos/subsys/system/explorer/Makefile.PCH
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
#
|
||||||
|
# ReactOS explorer
|
||||||
|
#
|
||||||
|
# Makefile.PCH
|
||||||
|
#
|
||||||
|
# MinGW Makefile with precompiled header support
|
||||||
|
#
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
CXX = g++
|
||||||
|
LINK = g++
|
||||||
|
|
||||||
|
CFLAGS = -DWIN32 -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -fexceptions -Wall -I.
|
||||||
|
RCFLAGS = -DWIN32 -D__WINDRES__
|
||||||
|
LFLAGS = -Wl,--subsystem,windows
|
||||||
|
|
||||||
|
ifdef DEBUG
|
||||||
|
CFLAGS += -D_DEBUG -g
|
||||||
|
RCFLAGS += -D_DEBUG
|
||||||
|
LFLAGS += -g
|
||||||
|
else
|
||||||
|
CFLAGS += -DNDEBUG -Os
|
||||||
|
RCFLAGS += -DNDEBUG
|
||||||
|
LFLAGS += -s
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef UNICODE
|
||||||
|
UNICODE = 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(UNICODE),1)
|
||||||
|
CFLAGS += -DUNICODE
|
||||||
|
# LFLAGS+= -Wl,--entry,_wWinMain@16
|
||||||
|
endif
|
||||||
|
|
||||||
|
CXXFLAGS = $(CFLAGS)
|
||||||
|
|
||||||
|
EXEC_SUFFIX = .exe
|
||||||
|
RES_SUFFIX = .coff
|
||||||
|
|
||||||
|
VPATH = shell utility taskbar desktop dialogs
|
||||||
|
|
||||||
|
PROGRAM = explorer
|
||||||
|
|
||||||
|
TARGET = $(PROGRAM)$(EXEC_SUFFIX)
|
||||||
|
|
||||||
|
OBJECTS = \
|
||||||
|
startup.o \
|
||||||
|
shellclasses.o \
|
||||||
|
utility.o \
|
||||||
|
window.o \
|
||||||
|
dragdropimpl.o \
|
||||||
|
shellbrowserimpl.o \
|
||||||
|
explorer.o \
|
||||||
|
entries.o \
|
||||||
|
winfs.o \
|
||||||
|
unixfs.o \
|
||||||
|
shellfs.o \
|
||||||
|
ntobjfs.o \
|
||||||
|
regfs.o \
|
||||||
|
fatfs.o \
|
||||||
|
webchild.o \
|
||||||
|
mainframe.o \
|
||||||
|
filechild.o \
|
||||||
|
pane.o \
|
||||||
|
shellbrowser.o \
|
||||||
|
desktop.o \
|
||||||
|
desktopbar.o \
|
||||||
|
taskbar.o \
|
||||||
|
startmenu.o \
|
||||||
|
traynotify.o \
|
||||||
|
quicklaunch.o \
|
||||||
|
favorites.o \
|
||||||
|
searchprogram.o \
|
||||||
|
settings.o \
|
||||||
|
i386-stub-win32.o \
|
||||||
|
xmlstorage.o
|
||||||
|
|
||||||
|
LIBS = gdi32 comctl32 ole32 uuid
|
||||||
|
DELAYIMPORTS = oleaut32 wsock32
|
||||||
|
|
||||||
|
all: precomp.h.gch $(TARGET)
|
||||||
|
|
||||||
|
precomp.h.gch:
|
||||||
|
$(CXX) $(CFLAGS) precomp.h
|
||||||
|
|
||||||
|
$(TARGET): $(OBJECTS) $(PROGRAM)$(RES_SUFFIX) notifyhook.dll libexpat.dll
|
||||||
|
$(LINK) $(LFLAGS) -o $@ $^ $(addprefix -l,$(LIBS)) $(addprefix -l,$(DELAYIMPORTS))
|
||||||
|
|
||||||
|
explorer$(RES_SUFFIX): $(PROGRAM)_intres.rc res/*.bmp res/*.ico
|
||||||
|
windres $(RCFLAGS) -o $@ $(PROGRAM)_intres.rc
|
||||||
|
|
||||||
|
notifyhook.dll: notifyhook/notifyhook.c notifyhook/notifyhook.h
|
||||||
|
$(CC) -D_WIN32_IE=0x0600 -Wall -D_NOTIFYHOOK_IMPL -Os -s notifyhook/notifyhook.c -shared -o $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(TARGET) $(OBJECTS) $(PROGRAM)$(RES_SUFFIX) precomp.h.gch
|
||||||
|
|
||||||
|
docu: doxy-footer.html
|
||||||
|
doxygen Doxyfile
|
||||||
|
|
||||||
|
full-docu: docu
|
||||||
|
-cmd /c start /b /low /wait hhc doxy-doc\html\index.hhp
|
||||||
|
cmd /c move /y doxy-doc\html\index.chm ros-explorer.chm
|
||||||
|
doxygen Doxyfile-all
|
||||||
|
-cmd /c start /b /low /wait hhc doxy-doc\html\index.hhp
|
||||||
|
cmd /c move /y doxy-doc\html\index.chm ros-explorer-full.chm
|
||||||
|
|
||||||
|
doxy-footer.html: ever
|
||||||
|
updatefooter
|
||||||
|
|
||||||
|
ever:
|
Loading…
Add table
Add a link
Reference in a new issue