New makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5447 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia
2000-01-16 02:35:03 +00:00
parent 259c933b56
commit ac3c6ddba2
9 changed files with 205 additions and 75 deletions

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=help
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=helpview
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95

33
samples/html/makefile.g95 Normal file
View File

@@ -0,0 +1,33 @@
#
# File: makefile.g95
# Author: Mumit Khan
# Created: 2000
# Updated:
# Copyright:
#
# Makefile : Builds samples for Win95, MSVC++ 16-bit
# Use FINAL=1 argument to nmake to build final version with no debugging
# info
# Set WXDIR for your system
WXDIR = ../..
THISDIR=$(WXDIR)/samples/html
include $(WXDIR)/src/makeg95.env
MAKEFILE = makefile.g95
# Mingw make may not have a shell to use, so can't use a loop here. Sigh.
# Please add new sample directories alphabetically to make it easier to
# keep track.
all clean:
-$(MAKE) -C about -f $(MAKEFILE) $@
-$(MAKE) -C help -f $(MAKEFILE) $@
-$(MAKE) -C helpview -f $(MAKEFILE) $@
-$(MAKE) -C printing -f $(MAKEFILE) $@
-$(MAKE) -C test -f $(MAKEFILE) $@
-$(MAKE) -C virtual -f $(MAKEFILE) $@
-$(MAKE) -C widget -f $(MAKEFILE) $@
-$(MAKE) -C zip -f $(MAKEFILE) $@

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=printing
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=test
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=virtual
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=widget
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95

View File

@@ -0,0 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../../..
TARGET=zip
OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95