]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/minifram/makefile.g95
Removed all deprecated printing code.
[wxWidgets.git] / samples / minifram / makefile.g95
index a16ac0faecd23f1c4dcb65115d55f827433ca7ac..3a7ba816f888a60690aeae5f7e4783539a8a4a47 100644 (file)
@@ -1,40 +1,10 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1993
-# Updated:     
-# Copyright:   (c) 1993, AIAI, University of Edinburgh
-#
-# "%W% %G%"
-#
-# Makefile for Buttonbar example (UNIX).
-# Change the WXDIR directory, and CPPFLAGS and LDFLAGS, for your system.
+# Purpose: makefile for minifram example (Cygwin/Mingw32)
+# Created: #03.01.00
 
 WXDIR = ../..
 
-# All common UNIX compiler flags and options are now in
-# this central makefile.
-include $(WXDIR)/src/makeg95.env
+TARGET=minifram
+OBJECTS = $(TARGET).o
 
-TESTOBJECTS = $(OBJDIR)/test.$(OBJSUFF) $(OBJDIR)/test_resources.$(OBJSUFF)
-TESTPROGRAM = test$(GUISUFFIX)
-
-all:   $(OBJDIR) $(TESTPROGRAM)
-
-demo:  $(TESTPROGRAM)
-
-$(OBJDIR):
-       mkdir $(OBJDIR)
-
-$(OBJDIR)/test.$(OBJSUFF):             test.h test.$(SRCSUFF)
-       $(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
-
-$(TESTPROGRAM): $(TESTOBJECTS) $(WXLIB)
-       $(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(TESTOBJECTS) $(LDLIBS)
-
-$(OBJDIR)/test_resources.o:  test.rc
-       $(RESCOMP) -i test.rc -o $(OBJDIR)/test_resources.o $(RESFLAGS)
-
-clean:
-       rm -f $(OBJECTS) test$(GUISUFFIX).exe $(TESTOBJECTS) core *.res *.rsc
+include $(WXDIR)/src/makeprog.g95