Rationalised Cygwin sample makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1652 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-02-09 15:37:52 +00:00
parent a6eb3b948b
commit 8e0080ee4e
46 changed files with 474 additions and 1342 deletions

View File

@@ -1,37 +1,16 @@
#
# File: makefile.g95
# Author: Julian Smart
# Created: 1993
# Updated:
# Copyright: (c) 1993, AIAI, University of Edinburgh
# File: makefile.g95
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# "%W% %G%"
#
# Makefile for printing example (UNIX). PRINTING NOT SUPPORTED
# UNDER UNIX YET: THIS IS A PLACEHOLDER.
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../..
# All common UNIX compiler flags and options are now in
# this central makefile.
include $(WXDIR)/src/makeg95.env
TARGET=printing
OBJECTS = $(TARGET).o
OBJECTS=$(OBJDIR)/printing.$(OBJSUFF) $(OBJDIR)/printing_resources.$(OBJSUFF)
all: $(OBJDIR) printing$(GUISUFFIX)
$(OBJDIR):
mkdir $(OBJDIR)
printing.exe: $(OBJECTS) $(WXLIB)
$(CC) $(LDFLAGS) -o printing$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
$(OBJDIR)/printing.$(OBJSUFF): printing.$(SRCSUFF) printing.h
$(CC) -c $(CPPFLAGS) -o $@ printing.$(SRCSUFF)
$(OBJDIR)/printing_resources.o: printing.rc
$(RESCOMP) -i printing.rc -o $(OBJDIR)/printing_resources.o $(RESFLAGS)
clean:
rm -f $(OBJECTS) printing$(GUISUFFIX).exe core *.res *.rsc
include $(WXDIR)/src/makeprog.g95