]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dialogs/makefile.g95
Bug fix in GetLabelFromText
[wxWidgets.git] / samples / dialogs / makefile.g95
index c579ce37e15129c7b3a524c4212bed89a4af98b4..a9ff2650cf6e8bdad94bca35eaf2e091b20a918b 100644 (file)
@@ -1,35 +1,16 @@
 #
-# File:                makefile.unx
-# 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 dialogs example (UNIX).
+# 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
-
-OBJECTS = $(OBJDIR)/dialogs.$(OBJSUFF) $(OBJDIR)/dialogs_resources.$(OBJSUFF)
-
-all:    $(OBJDIR) dialogs$(GUISUFFIX)
-
-$(OBJDIR):
-       mkdir $(OBJDIR)
-
-dialogs$(GUISUFFIX):   $(OBJECTS) $(WXLIB)
-       $(CC) $(LDFLAGS) -o dialogs$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
-
-$(OBJDIR)/dialogs.$(OBJSUFF):  dialogs.$(SRCSUFF)
-       $(CC) -c $(CPPFLAGS) -o $@ dialogs.$(SRCSUFF)
+TARGET=dialogs
+OBJECTS = $(TARGET).o
 
-$(OBJDIR)/dialogs_resources.o:  dialogs.rc
-       $(RESCOMP) -i dialogs.rc -o $(OBJDIR)/dialogs_resources.o $(RESFLAGS)
+include $(WXDIR)/src/makeprog.g95
 
-clean:
-       rm -f $(OBJECTS) dialogs$(GUISUFFIX).exe core *.rsc *.res