a few win32 makefiles
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2e0bceb668
commit
8e6b0231f1
21
utils/framelayout/src/makefile.b32
Normal file
21
utils/framelayout/src/makefile.b32
Normal file
@ -0,0 +1,21 @@
|
||||
#
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# Makefile : Builds FL library for 32-bit BC++
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
LIBTARGET=$(WXDIR)\lib\fl.lib
|
||||
|
||||
OBJECTS = antiflickpl.obj bardragpl.obj barhintspl.obj cbcustom.obj\
|
||||
cbstore.obj controlarea.obj controlbar.obj dyntbar.obj dyntbarhnd.obj\
|
||||
frmview.obj garbagec.obj gcupdatesmgr.obj hintanimpl.obj newbmpbtn.obj\
|
||||
objstore.obj panedrawpl.obj pf_sample.obj rowdragpl.obj rowlayoutpl.obj\
|
||||
settingsdlg.obj toolwnd.obj updatesmgr.obj wxinfo.obj
|
||||
|
||||
!include $(WXDIR)\src\makelib.b32
|
||||
|
21
utils/framelayout/src/makefile.g95
Normal file
21
utils/framelayout/src/makefile.g95
Normal file
@ -0,0 +1,21 @@
|
||||
#
|
||||
# File: makefile.g95
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright: (c) Julian Smart, 1999
|
||||
#
|
||||
# Makefile for wxWindows FL library Cygwin/Mingw32).
|
||||
|
||||
WXDIR = ../../..
|
||||
|
||||
LIBTARGET=$(WXDIR)/lib/libfl.a
|
||||
|
||||
OBJECTS = antiflickpl.o bardragpl.o barhintspl.o cbcustom.o\
|
||||
cbstore.o controlarea.o controlbar.o dyntbar.o dyntbarhnd.o\
|
||||
frmview.o garbagec.o gcupdatesmgr.o hintanimpl.o newbmpbtn.o\
|
||||
objstore.o panedrawpl.o pf_sample.o rowdragpl.o rowlayoutpl.o\
|
||||
settingsdlg.o toolwnd.o updatesmgr.o wxinfo.o
|
||||
|
||||
include $(WXDIR)/src/makelib.g95
|
||||
|
52
utils/framelayout/src/makefile.unx
Normal file
52
utils/framelayout/src/makefile.unx
Normal file
@ -0,0 +1,52 @@
|
||||
#
|
||||
# File: makefile.unx
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
# Copyright: (c) 1998
|
||||
#
|
||||
#
|
||||
# Makefile for FL library, Unix
|
||||
|
||||
include ../../../src/make.env
|
||||
|
||||
FLLIB=$(WXDIR)/lib/libogl$(GUISUFFIX).a
|
||||
|
||||
LIB_CPP_SRC=\
|
||||
antiflickpl.cpp \
|
||||
bardragpl.cpp \
|
||||
barhintspl.cpp \
|
||||
cbcustom.cpp \
|
||||
cbstore.cpp \
|
||||
controlarea.cpp \
|
||||
controlbar.cpp \
|
||||
dyntbar.cpp \
|
||||
dyntbarhnd.cpp \
|
||||
frmview.cpp \
|
||||
garbagec.cpp \
|
||||
gcupdatesmgr.cpp \
|
||||
hintanimpl.cpp \
|
||||
newbmpbtn.cpp \
|
||||
objstore.cpp \
|
||||
panedrawpl.cpp \
|
||||
pf_sample.cpp \
|
||||
rowdragpl.cpp \
|
||||
rowlayoutpl.cpp \
|
||||
settingsdlg.cpp \
|
||||
toolwnd.cpp \
|
||||
updatesmgr.cpp \
|
||||
wxinfo.cpp
|
||||
|
||||
all: $(FLLIB)
|
||||
|
||||
# Define library objects
|
||||
OBJECTS=\
|
||||
$(LIB_CPP_SRC:.cpp=.o)
|
||||
|
||||
$(FLLIB) : $(OBJECTS)
|
||||
ar $(AROPTIONS) $@ $(OBJECTS)
|
||||
$(RANLIB) $@
|
||||
|
||||
clean:
|
||||
rm -f $(OBJECTS) $(FLLIB)
|
||||
|
32
utils/framelayout/src/makefile.wat
Normal file
32
utils/framelayout/src/makefile.wat
Normal file
@ -0,0 +1,32 @@
|
||||
# Objects makefile
|
||||
|
||||
WXDIR = ..\..\..
|
||||
|
||||
!include $(WXDIR)\src\makewat.env
|
||||
|
||||
EXTRACPPFLAGS=/DPROLOGIO
|
||||
|
||||
OBJECTSLIB = $(WXDIR)\utils\objects\lib\fl.lib
|
||||
THISDIR = $(WXDIR)\utils\objects\src
|
||||
|
||||
NAME = fl
|
||||
LNK = $(name).lnk
|
||||
|
||||
IFLAGS = -i=$(WXINC) -i=$(WXBASEINC) -i=..\..\mfutils\src -i=..\..\prologio\src
|
||||
|
||||
OBJECTS = antiflickpl.obj bardragpl.obj barhintspl.obj cbcustom.obj\
|
||||
cbstore.obj controlarea.obj controlbar.obj dyntbar.obj dyntbarhnd.obj\
|
||||
frmview.obj garbagec.obj gcupdatesmgr.obj hintanimpl.obj newbmpbtn.obj\
|
||||
objstore.obj panedrawpl.obj pf_sample.obj rowdragpl.obj rowlayoutpl.obj\
|
||||
settingsdlg.obj toolwnd.obj updatesmgr.obj wxinfo.obj
|
||||
|
||||
all: $(OBJECTSLIB)
|
||||
|
||||
$(OBJECTSLIB): $(OBJECTS)
|
||||
*wlib /b /c /n /P=256 $(OBJECTSLIB) $(OBJECTS)
|
||||
|
||||
clean: .SYMBOLIC
|
||||
-erase *.obj *.bak *.err *.pch $(OBJECTSLIB) *.lbc
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user