updated samples makefiles
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6684 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,13 +1,5 @@
|
||||
#
|
||||
# File: Makefile.in
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
# Copyright: (c) 1998 Julian Smart
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile for checklst example (UNIX).
|
||||
# Purpose: makefile for exec example (UNIX).
|
||||
# Created: 2000-03-14
|
||||
|
||||
top_srcdir = @top_srcdir@/..
|
||||
top_builddir = ../..
|
||||
|
@@ -1,11 +1,5 @@
|
||||
#
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# Makefile : Builds sample for 32-bit BC++
|
||||
# Purpose: makefile for exec example (BC++ 32bit)
|
||||
# Created: 2000-03-14
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
|
@@ -1,10 +1,5 @@
|
||||
#
|
||||
# File: makefile.bcc
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
#
|
||||
# Builds a BC++ 16-bit sample
|
||||
# Purpose: makefile for exec example (BC++ 16bit)
|
||||
# Created: 2000-03-14
|
||||
|
||||
!if "$(WXWIN)" == ""
|
||||
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
|
||||
|
@@ -1,12 +1,5 @@
|
||||
#
|
||||
# File: makefile.dos
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
#
|
||||
# Makefile : Builds 16-bit sample, VC++ 1.5
|
||||
# Use FINAL=1 argument to nmake to build final version with no debugging
|
||||
# info
|
||||
# Purpose: makefile for exec example (VC++ 1.5x)
|
||||
# Created: 2000-03-14
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
|
@@ -1,16 +1,10 @@
|
||||
#
|
||||
# File: makefile.g95
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright: (c) Julian Smart, 1999
|
||||
#
|
||||
# Makefile for wxWindows sample (Cygwin/Mingw32).
|
||||
# Purpose: makefile for exec example (Cygwin/Mingw32)
|
||||
# Created: #03.01.00
|
||||
|
||||
WXDIR = ../..
|
||||
|
||||
TARGET=exec
|
||||
OBJECTS = $(TARGET).o
|
||||
|
||||
include $(WXDIR)/src/makeprog.g95
|
||||
include $(WXDIR)\src\makeprog.g95
|
||||
|
||||
|
37
samples/exec/makefile.sc
Normal file
37
samples/exec/makefile.sc
Normal file
@@ -0,0 +1,37 @@
|
||||
# Purpose: makefile for exec example (Symantec C++)
|
||||
# Created: 2000-03-14
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
WXLIB = $(WXDIR)\lib\wx.lib
|
||||
INCDIR = $(WXDIR)\include
|
||||
INCLUDE=$(INCDIR)
|
||||
TARGET=exec
|
||||
|
||||
include $(WXDIR)\src\makesc.env
|
||||
|
||||
exec.exe: exec.obj $(DEFFILE) exec.res
|
||||
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
|
||||
*$(RC) -k exec.res
|
||||
|
||||
sc32.def:
|
||||
echo EXETYPE NT > sc32.def
|
||||
echo SUBSYSTEM WINDOWS >> sc32.def
|
||||
|
||||
sc16.def:
|
||||
echo NAME $(TARGET) > sc16.def
|
||||
echo EXETYPE WINDOWS >> sc16.def
|
||||
echo STUB 'WINSTUB.EXE' >> sc16.def
|
||||
echo CODE PRELOAD MOVEABLE DISCARDABLE >> sc16.def
|
||||
echo DATA PRELOAD MOVEABLE MULTIPLE >> sc16.def
|
||||
echo HEAPSIZE 1024 >> sc16.def
|
||||
echo STACKSIZE 8192 >> sc16.def
|
||||
|
||||
clean:
|
||||
-del *.obj
|
||||
-del *.exe
|
||||
-del *.res
|
||||
-del *.map
|
||||
-del *.rws
|
||||
-del sc32.def
|
||||
-del sc16.def
|
||||
|
14
samples/exec/makefile.sl
Normal file
14
samples/exec/makefile.sl
Normal file
@@ -0,0 +1,14 @@
|
||||
# Purpose: makefile for exec example (Salford C++)
|
||||
# Created: 2000-03-14
|
||||
|
||||
PROGRAM = exec
|
||||
OBJECTS = $(PROGRAM).obj
|
||||
|
||||
include ..\..\src\makeprog.sl
|
||||
|
||||
all: wx $(TARGET)
|
||||
|
||||
wx:
|
||||
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
|
||||
cd $(WXDIR)\samples\exec
|
||||
|
35
samples/exec/makefile.twn
Normal file
35
samples/exec/makefile.twn
Normal file
@@ -0,0 +1,35 @@
|
||||
# Purpose: makefile for exec example (TWIN)
|
||||
# Created: 2000-03-14
|
||||
|
||||
WXDIR = ../..
|
||||
|
||||
# All common UNIX compiler flags and options are now in
|
||||
# this central makefile.
|
||||
include $(WXDIR)/src/maketwin.env
|
||||
|
||||
OBJECTS = $(OBJDIR)/exec.$(OBJSUFF) $(OBJDIR)/exec.$(OBJSUFF)
|
||||
|
||||
all: $(OBJDIR) exec$(GUISUFFIX)$(EXESUFF)
|
||||
|
||||
wx:
|
||||
|
||||
$(OBJDIR):
|
||||
mkdir $(OBJDIR)
|
||||
|
||||
exec$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
|
||||
$(CC) $(LDFLAGS) -o exec$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
|
||||
|
||||
$(OBJDIR)/exec.$(OBJSUFF): exec.$(SRCSUFF)
|
||||
$(CC) -c $(CPPFLAGS) -o $@ exec.$(SRCSUFF)
|
||||
|
||||
exec.c: exec.rc
|
||||
$(RESCOMP) $(RCINPUTSWITCH) exec.rc $(RCOUTPUTSWITCH) exec.c $(RESFLAGS)
|
||||
|
||||
$(OBJDIR)/exec.$(OBJSUFF): exec.c
|
||||
$(CC) -c $(CPPFLAGS) -o $@ exec.c
|
||||
|
||||
#$(OBJDIR)/exec.o: exec.rc
|
||||
# $(RESCOMP) $(RCINPUTSWITCH) exec.rc $(RCOUTPUTSWITCH) $(OBJDIR)/exec.o $(RESFLAGS)
|
||||
|
||||
clean:
|
||||
rm -f $(OBJECTS) exec$(GUISUFFIX).exe core *.rsc *.res
|
23
samples/exec/makefile.unx
Normal file
23
samples/exec/makefile.unx
Normal file
@@ -0,0 +1,23 @@
|
||||
# Purpose: makefile for exec example (Unix)
|
||||
# Created: 2000-03-14
|
||||
|
||||
CC = gcc
|
||||
|
||||
PROGRAM = exec
|
||||
|
||||
OBJECTS = $(PROGRAM).o
|
||||
|
||||
# implementation
|
||||
|
||||
.SUFFIXES: .o .cpp
|
||||
|
||||
.cpp.o :
|
||||
$(CC) -c `wx-config --cflags` -o $@ $<
|
||||
|
||||
all: $(PROGRAM)
|
||||
|
||||
$(PROGRAM): $(OBJECTS)
|
||||
$(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
|
||||
|
||||
clean:
|
||||
rm -f *.o $(PROGRAM)
|
@@ -1,12 +1,5 @@
|
||||
#
|
||||
# File: makefile.vc
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright: (c) Julian Smart
|
||||
#
|
||||
# Makefile : Builds sample (VC++, WIN32)
|
||||
# Use FINAL=1 argument to nmake to build final version with no debug info.
|
||||
# Purpose: makefile for exec example (VC++ 32bit)
|
||||
# Created: 2000-03-14
|
||||
|
||||
# Set WXDIR for your system
|
||||
WXDIR = $(WXWIN)
|
||||
|
@@ -1,9 +1,5 @@
|
||||
#
|
||||
# Makefile for WATCOM
|
||||
#
|
||||
# Created by Julian Smart, January 1999
|
||||
#
|
||||
#
|
||||
# Purpose: makefile for exec example (Watcom)
|
||||
# Created: 2000-03-14
|
||||
|
||||
WXDIR = $(%WXWIN)
|
||||
|
||||
|
Reference in New Issue
Block a user