X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..adf9e09990c79a3645eaa1f69b44d852c11a72f0:/samples/mdi/makefile.g95?ds=sidebyside

diff --git a/samples/mdi/makefile.g95 b/samples/mdi/makefile.g95
index 045751ea89..65e2af593f 100644
--- a/samples/mdi/makefile.g95
+++ b/samples/mdi/makefile.g95
@@ -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 mdi 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)/mdi.$(OBJSUFF) $(OBJDIR)/mdi_resources.$(OBJSUFF)
-
-all:    $(OBJDIR) mdi.exe
-
-$(OBJDIR):
-	mkdir $(OBJDIR)
-
-mdi.exe: $(OBJECTS) $(WXLIB)
-	$(CC) $(LDFLAGS) -o mdi.exe $(OBJECTS) $(LDLIBS)
-
-$(OBJDIR)/mdi.$(OBJSUFF):        mdi.$(SRCSUFF) mdi.h
-	$(CC) -c $(CPPFLAGS) -o $@ mdi.$(SRCSUFF)
+TARGET=mdi
+OBJECTS = $(TARGET).o
 
-$(OBJDIR)/mdi_resources.o:  mdi.rc
-	$(RESCOMP) -i mdi.rc -o $(OBJDIR)/mdi_resources.o $(RESFLAGS)
+include $(WXDIR)/src/makeprog.g95
 
-clean:
-	rm -f $(OBJECTS) mdi$(GUISUFFIX).exe core *.res *.rsc