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:
Ron Lee 2000-03-14 14:06:41 +00:00
parent a8a0b892df
commit 367e57ec9b
81 changed files with 973 additions and 417 deletions

View File

@ -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 = ../..

View File

@ -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)

View File

@ -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

View File

@ -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)

View File

@ -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
View 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
View 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
View 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
View 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)

View File

@ -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)

View File

@ -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)

25
samples/ipc/makefile.unx Normal file
View File

@ -0,0 +1,25 @@
# Purpose: makefile for ipc example (Unix)
# Created: 2000-03-14
# hand hacked from template file by Ron <ron@debian.org>
CC = gcc
PROGRAMS = client server
# implementation
.SUFFIXES: .o .cpp
.cpp.o :
$(CC) -c `wx-config --cflags` -o $@ $<
all: $(PROGRAMS)
client: client.o
$(CC) -o $@ $< `wx-config --libs`
server: server.o
$(CC) -o $@ $< `wx-config --libs`
clean:
rm -f *.o $(PROGRAMS)

View File

@ -20,8 +20,8 @@
#include "wx/wx.h"
#endif
#include <wx/msw/wave.h>
#include <wx/msw/joystick.h>
#include <wx/wave.h>
#include <wx/joystick.h>
#include "joytest.h"

View File

@ -1,11 +1,5 @@
#
# File: makefile.b32
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
# Purpose: makefile for joytest example (BC++ 32bit)
# Created: 2000-03-14
WXDIR = $(WXWIN)

View File

@ -1,10 +1,5 @@
#
# File: makefile.bcc
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
# Purpose: makefile for joytest example (BC++ 16bit)
# Created: 2000-03-14
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx

View File

@ -1,17 +1,10 @@
#
# 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 joytest example (VC++ 1.5x)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=joytest
OBJECTS = $(TARGET).obj
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@ -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 joytest example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=joytest
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@ -1,37 +1,37 @@
; Last change: JS 12 Apr 98 10:45 am
# Symantec C++ makefile for joytest example
# NOTE that peripheral libraries are now dealt in main wxWindows makefile.
# Purpose: makefile for joytest example (Symantec C++)
# Created: 2000-03-14
WXDIR = $(WXWIN)
!include $(WXDIR)\src\makesc.env
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
MSWINC = $(INCDIR)\msw
BASEINC = $(INCDIR)\base
INCLUDE=$(INCDIR)
TARGET=joytest
CC=sc
RC=rc
CFLAGS = -o -ml -W -Dwx_msw
LDFLAGS = -ml -W
include $(WXDIR)\src\makesc.env
INCLUDE=$(BASEINC);$(MSWINC)
joytest.exe: joytest.obj $(DEFFILE) joytest.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
*$(RC) -k joytest.res
LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
sc32.def:
echo EXETYPE NT > sc32.def
echo SUBSYSTEM WINDOWS >> sc32.def
.$(SRCSUFF).obj:
*$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
.rc.res:
*$(RC) -r -I$(INCLUDE) $<
joytest.exe: joytest.obj joytest.def joytest.res
*$(CC) $(LDFLAGS) -o$@ joytest.obj joytest.def $(LIBS)
*$(RC) -k joytest.res
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 *.obj
-del *.exe
-del *.res
-del *.map
-del *.rws
-del sc32.def
-del sc16.def

View File

@ -0,0 +1,14 @@
# Purpose: makefile for joytest example (Salford C++)
# Created: 2000-03-14
PROGRAM = joytest
OBJECTS = $(PROGRAM).obj
include ..\..\src\makeprog.sl
all: wx $(TARGET)
wx:
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
cd $(WXDIR)\samples\joytest

View File

@ -0,0 +1,35 @@
# Purpose: makefile for joytest 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)/joytest.$(OBJSUFF) $(OBJDIR)/joytest.$(OBJSUFF)
all: $(OBJDIR) joytest$(GUISUFFIX)$(EXESUFF)
wx:
$(OBJDIR):
mkdir $(OBJDIR)
joytest$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o joytest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/joytest.$(OBJSUFF): joytest.$(SRCSUFF)
$(CC) -c $(CPPFLAGS) -o $@ joytest.$(SRCSUFF)
joytest.c: joytest.rc
$(RESCOMP) $(RCINPUTSWITCH) joytest.rc $(RCOUTPUTSWITCH) joytest.c $(RESFLAGS)
$(OBJDIR)/joytest.$(OBJSUFF): joytest.c
$(CC) -c $(CPPFLAGS) -o $@ joytest.c
#$(OBJDIR)/joytest.o: joytest.rc
# $(RESCOMP) $(RCINPUTSWITCH) joytest.rc $(RCOUTPUTSWITCH) $(OBJDIR)/joytest.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) joytest$(GUISUFFIX).exe core *.rsc *.res

View File

@ -1,17 +1,23 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for joytest example (UNIX).
# Purpose: makefile for joytest example (Unix)
# Created: 2000-03-14
PROGRAM=joytest
CC = gcc
OBJECTS=$(PROGRAM).o
PROGRAM = joytest
include ../../src/makeprog.env
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)

View File

@ -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 joytest example (VC++ 32bit)
# Created: 2000-03-14
# Set WXDIR for your system
WXDIR = $(WXWIN)

View File

@ -1,9 +1,5 @@
#
# Makefile for WATCOM
#
# Created by Julian Smart, January 1999
#
#
# Purpose: makefile for joytest example (Watcom)
# Created: 2000-03-14
WXDIR = $(%WXWIN)

View File

@ -1,17 +0,0 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for nativdlg example (UNIX).
# Actually, this is a Windows-specific example...
PROGRAM=nativdlg
OBJECTS=$(PROGRAM).o
include ../../src/makeprog.env

View File

@ -1,13 +1,5 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for wxWindows sample (UNIX).
# Purpose: makefile for propsize example (UNIX).
# Created: 2000-03-14
top_srcdir = @top_srcdir@/..
top_builddir = ../..
@ -18,3 +10,4 @@ PROGRAM=propsize
OBJECTS=$(PROGRAM).o
include ../../src/makeprog.env

View File

@ -0,0 +1,10 @@
# Purpose: makefile for propsize example (BC++ 32bit)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=propsize
OBJECTS = $(TARGET).obj
!include $(WXDIR)\src\makeprog.b32

View File

@ -0,0 +1,14 @@
# Purpose: makefile for propsize example (BC++ 16bit)
# Created: 2000-03-14
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
!endif
WXDIR = $(WXWIN)
TARGET=propsize
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.bcc

View File

@ -0,0 +1,10 @@
# Purpose: makefile for propsize example (VC++ 1.5x)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=propsize
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@ -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 propsize example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=propsize
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@ -0,0 +1,37 @@
# Purpose: makefile for propsize example (Symantec C++)
# Created: 2000-03-14
WXDIR = $(WXWIN)
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
INCLUDE=$(INCDIR)
TARGET=propsize
include $(WXDIR)\src\makesc.env
propsize.exe: propsize.obj $(DEFFILE) propsize.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
*$(RC) -k propsize.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

View File

@ -0,0 +1,14 @@
# Purpose: makefile for propsize example (Salford C++)
# Created: 2000-03-14
PROGRAM = propsize
OBJECTS = $(PROGRAM).obj
include ..\..\src\makeprog.sl
all: wx $(TARGET)
wx:
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
cd $(WXDIR)\samples\propsize

View File

@ -0,0 +1,35 @@
# Purpose: makefile for propsize 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)/propsize.$(OBJSUFF) $(OBJDIR)/propsize.$(OBJSUFF)
all: $(OBJDIR) propsize$(GUISUFFIX)$(EXESUFF)
wx:
$(OBJDIR):
mkdir $(OBJDIR)
propsize$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o propsize$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/propsize.$(OBJSUFF): propsize.$(SRCSUFF)
$(CC) -c $(CPPFLAGS) -o $@ propsize.$(SRCSUFF)
propsize.c: propsize.rc
$(RESCOMP) $(RCINPUTSWITCH) propsize.rc $(RCOUTPUTSWITCH) propsize.c $(RESFLAGS)
$(OBJDIR)/propsize.$(OBJSUFF): propsize.c
$(CC) -c $(CPPFLAGS) -o $@ propsize.c
#$(OBJDIR)/propsize.o: propsize.rc
# $(RESCOMP) $(RCINPUTSWITCH) propsize.rc $(RCOUTPUTSWITCH) $(OBJDIR)/propsize.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) propsize$(GUISUFFIX).exe core *.rsc *.res

View File

@ -0,0 +1,23 @@
# Purpose: makefile for propsize example (Unix)
# Created: 2000-03-14
CC = gcc
PROGRAM = propsize
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)

View File

@ -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 propsize example (VC++ 32bit)
# Created: 2000-03-14
# Set WXDIR for your system
WXDIR = $(WXWIN)
@ -15,3 +8,4 @@ PROGRAM=propsize
OBJECTS = $(PROGRAM).obj
!include $(WXDIR)\src\makeprog.vc

View File

@ -0,0 +1,11 @@
# Purpose: makefile for propsize example (Watcom)
# Created: 2000-03-14
WXDIR = $(%WXWIN)
PROGRAM = propsize
OBJECTS = $(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat

View File

@ -0,0 +1,22 @@
# Purpose: makefile for richedit example (Unix)
# Created: 2000-03-14
# hand hacked from template file by Ron <ron@debian.org>
CC = gcc
PROGRAM = wxLayout
OBJECTS = $(PROGRAM).o kbList.o wxllist.o wxlparser.o wxlwindow.o
# implementation
.SUFFIXES: .o .cpp
.cpp.o :
$(CC) -c `wx-config --cflags` -o $@ $<
$(PROGRAM): $(OBJECTS)
$(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
clean:
rm -f *.o $(PROGRAM)

View File

@ -1,13 +1,5 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for sashtest example (UNIX).
# Purpose: makefile for sashtest example (UNIX).
# Created: 2000-03-14
top_srcdir = @top_srcdir@/..
top_builddir = ../..

View File

@ -1,11 +1,5 @@
#
# File: makefile.b32
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
# Purpose: makefile for sashtest example (BC++ 32bit)
# Created: 2000-03-14
WXDIR = $(WXWIN)

View File

@ -1,10 +1,5 @@
#
# File: makefile.bcc
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
# Purpose: makefile for sashtest example (BC++ 16bit)
# Created: 2000-03-14
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx

View File

@ -0,0 +1,10 @@
# Purpose: makefile for sashtest example (VC++ 1.5x)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=sashtest
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@ -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 sashtest example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=sashtest
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@ -0,0 +1,37 @@
# Purpose: makefile for sashtest example (Symantec C++)
# Created: 2000-03-14
WXDIR = $(WXWIN)
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
INCLUDE=$(INCDIR)
TARGET=sashtest
include $(WXDIR)\src\makesc.env
sashtest.exe: sashtest.obj $(DEFFILE) sashtest.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
*$(RC) -k sashtest.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

View File

@ -0,0 +1,14 @@
# Purpose: makefile for sashtest example (Salford C++)
# Created: 2000-03-14
PROGRAM = sashtest
OBJECTS = $(PROGRAM).obj
include ..\..\src\makeprog.sl
all: wx $(TARGET)
wx:
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
cd $(WXDIR)\samples\sashtest

View File

@ -0,0 +1,35 @@
# Purpose: makefile for sashtest 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)/sashtest.$(OBJSUFF) $(OBJDIR)/sashtest.$(OBJSUFF)
all: $(OBJDIR) sashtest$(GUISUFFIX)$(EXESUFF)
wx:
$(OBJDIR):
mkdir $(OBJDIR)
sashtest$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o sashtest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/sashtest.$(OBJSUFF): sashtest.$(SRCSUFF)
$(CC) -c $(CPPFLAGS) -o $@ sashtest.$(SRCSUFF)
sashtest.c: sashtest.rc
$(RESCOMP) $(RCINPUTSWITCH) sashtest.rc $(RCOUTPUTSWITCH) sashtest.c $(RESFLAGS)
$(OBJDIR)/sashtest.$(OBJSUFF): sashtest.c
$(CC) -c $(CPPFLAGS) -o $@ sashtest.c
#$(OBJDIR)/sashtest.o: sashtest.rc
# $(RESCOMP) $(RCINPUTSWITCH) sashtest.rc $(RCOUTPUTSWITCH) $(OBJDIR)/sashtest.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) sashtest$(GUISUFFIX).exe core *.rsc *.res

View File

@ -0,0 +1,23 @@
# Purpose: makefile for sashtest example (Unix)
# Created: 2000-03-14
CC = gcc
PROGRAM = sashtest
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)

View File

@ -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 sashtest example (VC++ 32bit)
# Created: 2000-03-14
# Set WXDIR for your system
WXDIR = $(WXWIN)

View File

@ -1,9 +1,5 @@
#
# Makefile for WATCOM
#
# Created by Julian Smart, January 1999
#
#
# Purpose: makefile for sashtest example (Watcom)
# Created: 2000-03-14
WXDIR = $(%WXWIN)

View File

@ -0,0 +1,25 @@
# Purpose: makefile for sockets example (Unix)
# Created: 2000-03-14
# hand hacked from template file by Ron <ron@debian.org>
CC = gcc
PROGRAMS = client server
# implementation
.SUFFIXES: .o .cpp
.cpp.o :
$(CC) -c `wx-config --cflags` -o $@ $<
all: $(PROGRAMS)
client: client.o
$(CC) -o $@ $< `wx-config --libs`
server: server.o
$(CC) -o $@ $< `wx-config --libs`
clean:
rm -f *.o $(PROGRAMS)

View File

@ -1,13 +1,5 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for toolbar example (UNIX).
# Purpose: makefile for toolbar example (UNIX).
# Created: 2000-03-14
top_srcdir = @top_srcdir@/..
top_builddir = ../..
@ -19,4 +11,3 @@ OBJECTS=$(PROGRAM).o
include ../../src/makeprog.env

View File

@ -1,11 +1,5 @@
#
# File: makefile.b32
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
# Purpose: makefile for toolbar example (BC++ 32bit)
# Created: 2000-03-14
WXDIR = $(WXWIN)

View File

@ -1,10 +1,5 @@
#
# File: makefile.bcc
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
# Purpose: makefile for toolbar example (BC++ 16bit)
# Created: 2000-03-14
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx

View File

@ -1,17 +1,10 @@
#
# 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 toolbar example (VC++ 1.5x)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=toolbar
OBJECTS = $(TARGET).obj
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@ -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 toolbar example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=toolbar
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@ -0,0 +1,37 @@
# Purpose: makefile for toolbar example (Symantec C++)
# Created: 2000-03-14
WXDIR = $(WXWIN)
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
INCLUDE=$(INCDIR)
TARGET=toolbar
include $(WXDIR)\src\makesc.env
toolbar.exe: toolbar.obj $(DEFFILE) toolbar.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
*$(RC) -k toolbar.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

View File

@ -0,0 +1,14 @@
# Purpose: makefile for toolbar example (Salford C++)
# Created: 2000-03-14
PROGRAM = toolbar
OBJECTS = $(PROGRAM).obj
include ..\..\src\makeprog.sl
all: wx $(TARGET)
wx:
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
cd $(WXDIR)\samples\toolbar

View File

@ -0,0 +1,35 @@
# Purpose: makefile for toolbar 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)/toolbar.$(OBJSUFF) $(OBJDIR)/toolbar.$(OBJSUFF)
all: $(OBJDIR) toolbar$(GUISUFFIX)$(EXESUFF)
wx:
$(OBJDIR):
mkdir $(OBJDIR)
toolbar$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o toolbar$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/toolbar.$(OBJSUFF): toolbar.$(SRCSUFF)
$(CC) -c $(CPPFLAGS) -o $@ toolbar.$(SRCSUFF)
toolbar.c: toolbar.rc
$(RESCOMP) $(RCINPUTSWITCH) toolbar.rc $(RCOUTPUTSWITCH) toolbar.c $(RESFLAGS)
$(OBJDIR)/toolbar.$(OBJSUFF): toolbar.c
$(CC) -c $(CPPFLAGS) -o $@ toolbar.c
#$(OBJDIR)/toolbar.o: toolbar.rc
# $(RESCOMP) $(RCINPUTSWITCH) toolbar.rc $(RCOUTPUTSWITCH) $(OBJDIR)/toolbar.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) toolbar$(GUISUFFIX).exe core *.rsc *.res

View File

@ -0,0 +1,23 @@
# Purpose: makefile for toolbar example (Unix)
# Created: 2000-03-14
CC = gcc
PROGRAM = toolbar
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)

View File

@ -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 toolbar example (VC++ 32bit)
# Created: 2000-03-14
# Set WXDIR for your system
WXDIR = $(WXWIN)

View File

@ -1,9 +1,5 @@
#
# Makefile for WATCOM
#
# Created by Julian Smart, January 1999
#
#
# Purpose: makefile for toolbar example (Watcom)
# Created: 2000-03-14
WXDIR = $(%WXWIN)

View File

@ -1,13 +1,5 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for typetest example (UNIX).
# Purpose: makefile for typetest example (UNIX).
# Created: 2000-03-14
top_srcdir = @top_srcdir@/..
top_builddir = ../..

View File

@ -1,11 +1,5 @@
#
# File: makefile.b32
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
# Purpose: makefile for typetest example (BC++ 32bit)
# Created: 2000-03-14
WXDIR = $(WXWIN)

View File

@ -1,10 +1,5 @@
#
# File: makefile.bcc
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
# Purpose: makefile for typetest example (BC++ 16bit)
# Created: 2000-03-14
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx

View File

@ -1,17 +1,10 @@
#
# 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 typetest example (VC++ 1.5x)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=typetest
OBJECTS = $(TARGET).obj
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@ -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 typetest example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=typetest
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@ -0,0 +1,37 @@
# Purpose: makefile for typetest example (Symantec C++)
# Created: 2000-03-14
WXDIR = $(WXWIN)
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
INCLUDE=$(INCDIR)
TARGET=typetest
include $(WXDIR)\src\makesc.env
typetest.exe: typetest.obj $(DEFFILE) typetest.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
*$(RC) -k typetest.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

View File

@ -0,0 +1,14 @@
# Purpose: makefile for typetest example (Salford C++)
# Created: 2000-03-14
PROGRAM = typetest
OBJECTS = $(PROGRAM).obj
include ..\..\src\makeprog.sl
all: wx $(TARGET)
wx:
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
cd $(WXDIR)\samples\typetest

View File

@ -0,0 +1,35 @@
# Purpose: makefile for typetest 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)/typetest.$(OBJSUFF) $(OBJDIR)/typetest.$(OBJSUFF)
all: $(OBJDIR) typetest$(GUISUFFIX)$(EXESUFF)
wx:
$(OBJDIR):
mkdir $(OBJDIR)
typetest$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o typetest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/typetest.$(OBJSUFF): typetest.$(SRCSUFF)
$(CC) -c $(CPPFLAGS) -o $@ typetest.$(SRCSUFF)
typetest.c: typetest.rc
$(RESCOMP) $(RCINPUTSWITCH) typetest.rc $(RCOUTPUTSWITCH) typetest.c $(RESFLAGS)
$(OBJDIR)/typetest.$(OBJSUFF): typetest.c
$(CC) -c $(CPPFLAGS) -o $@ typetest.c
#$(OBJDIR)/typetest.o: typetest.rc
# $(RESCOMP) $(RCINPUTSWITCH) typetest.rc $(RCOUTPUTSWITCH) $(OBJDIR)/typetest.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) typetest$(GUISUFFIX).exe core *.rsc *.res

View File

@ -0,0 +1,23 @@
# Purpose: makefile for typetest example (Unix)
# Created: 2000-03-14
CC = gcc
PROGRAM = typetest
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)

View File

@ -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 typetest example (VC++ 32bit)
# Created: 2000-03-14
# Set WXDIR for your system
WXDIR = $(WXWIN)

View File

@ -1,9 +1,5 @@
#
# Makefile for WATCOM
#
# Created by Julian Smart, January 1999
#
#
# Purpose: makefile for typetest example (Watcom)
# Created: 2000-03-14
WXDIR = $(%WXWIN)

View File

@ -1,13 +1,5 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for validate example (UNIX).
# Purpose: makefile for validate example (UNIX).
# Created: 2000-03-14
top_srcdir = @top_srcdir@/..
top_builddir = ../..

View File

@ -1,11 +1,5 @@
#
# File: makefile.b32
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
# Purpose: makefile for validate example (BC++ 32bit)
# Created: 2000-03-14
WXDIR = $(WXWIN)

View File

@ -1,10 +1,5 @@
#
# File: makefile.bcc
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
# Purpose: makefile for validate example (BC++ 16bit)
# Created: 2000-03-14
!if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx

View File

@ -1,17 +1,10 @@
#
# 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 validate example (VC++ 1.5x)
# Created: 2000-03-14
WXDIR = $(WXWIN)
TARGET=validate
OBJECTS = $(TARGET).obj
OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc

View File

@ -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 validate example (Cygwin/Mingw32)
# Created: #03.01.00
WXDIR = ../..
TARGET=validate
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95
include $(WXDIR)\src\makeprog.g95

View File

@ -0,0 +1,37 @@
# Purpose: makefile for validate example (Symantec C++)
# Created: 2000-03-14
WXDIR = $(WXWIN)
WXLIB = $(WXDIR)\lib\wx.lib
INCDIR = $(WXDIR)\include
INCLUDE=$(INCDIR)
TARGET=validate
include $(WXDIR)\src\makesc.env
validate.exe: validate.obj $(DEFFILE) validate.res
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
*$(RC) -k validate.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

View File

@ -0,0 +1,14 @@
# Purpose: makefile for validate example (Salford C++)
# Created: 2000-03-14
PROGRAM = validate
OBJECTS = $(PROGRAM).obj
include ..\..\src\makeprog.sl
all: wx $(TARGET)
wx:
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
cd $(WXDIR)\samples\validate

View File

@ -0,0 +1,35 @@
# Purpose: makefile for validate 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)/validate.$(OBJSUFF) $(OBJDIR)/validate.$(OBJSUFF)
all: $(OBJDIR) validate$(GUISUFFIX)$(EXESUFF)
wx:
$(OBJDIR):
mkdir $(OBJDIR)
validate$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o validate$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/validate.$(OBJSUFF): validate.$(SRCSUFF)
$(CC) -c $(CPPFLAGS) -o $@ validate.$(SRCSUFF)
validate.c: validate.rc
$(RESCOMP) $(RCINPUTSWITCH) validate.rc $(RCOUTPUTSWITCH) validate.c $(RESFLAGS)
$(OBJDIR)/validate.$(OBJSUFF): validate.c
$(CC) -c $(CPPFLAGS) -o $@ validate.c
#$(OBJDIR)/validate.o: validate.rc
# $(RESCOMP) $(RCINPUTSWITCH) validate.rc $(RCOUTPUTSWITCH) $(OBJDIR)/validate.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) validate$(GUISUFFIX).exe core *.rsc *.res

View File

@ -0,0 +1,23 @@
# Purpose: makefile for validate example (Unix)
# Created: 2000-03-14
CC = gcc
PROGRAM = validate
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)

View File

@ -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 validate example (VC++ 32bit)
# Created: 2000-03-14
# Set WXDIR for your system
WXDIR = $(WXWIN)

View File

@ -1,9 +1,5 @@
#
# Makefile for WATCOM
#
# Created by Julian Smart, January 1999
#
#
# Purpose: makefile for validate example (Watcom)
# Created: 2000-03-14
WXDIR = $(%WXWIN)