]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/layout/makefile.g95
updated and expanded wxLog docs
[wxWidgets.git] / samples / layout / makefile.g95
index df9f97e2462dcf0cc4d0e5d9ae5a9e98d1bdc8c3..e4f5ffd5eea00d41077b4de0a2a07b10b92e4e65 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 layout 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)/layout.$(OBJSUFF) $(OBJDIR)/layout_resources.o
-
-all:   $(OBJDIR) layout.exe
-
-$(OBJDIR):
-       mkdir $(OBJDIR)
-
-layout.exe: $(OBJECTS) $(WXLIB)
-       $(CC) $(LDFLAGS) -o layout$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
-
-$(OBJDIR)/layout.$(OBJSUFF):        layout.$(SRCSUFF) layout.h
-       $(CC) -c $(CPPFLAGS) -o $@ layout.$(SRCSUFF)
+TARGET=layout
+OBJECTS = $(TARGET).o
 
-$(OBJDIR)/layout_resources.o:  layout.rc
-       $(RESCOMP) -i layout.rc -o $(OBJDIR)/layout_resources.o $(RESFLAGS)
+include $(WXDIR)/src/makeprog.g95
 
-clean:
-       rm -f $(OBJECTS) layout$(GUISUFFIX).exe core *.res *.rsc