]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/nativdlg/makefile.g95
Tools
[wxWidgets.git] / samples / nativdlg / makefile.g95
index 018f915f184561c06765ed3be01ac1d4f71e1093..3758852311b2e31be02adaf9f7f99b0d56e9ad19 100644 (file)
@@ -1,36 +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 nativdlg 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)/nativdlg.$(OBJSUFF) $(OBJDIR)/nativdlg_resources.$(OBJSUFF)
-
-all:   $(OBJDIR) nativdlg$(GUISUFFIX)
-
-$(OBJDIR):
-       mkdir $(OBJDIR)
-
-$(OBJDIR)/nativdlg.$(OBJSUFF):        nativdlg.$(SRCSUFF) nativdlg.h
-       $(CC) -c $(CPPFLAGS) -o $@ nativdlg.$(SRCSUFF)
-
-nativdlg$(GUISUFFIX): $(OBJECTS) $(WXLIB)
-       $(CC) $(LDFLAGS) -o nativdlg$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
-
-$(OBJDIR)/nativdlg_resources.o:  nativdlg.rc
-       $(RESCOMP) -i nativdlg.rc -o $(OBJDIR)/nativdlg_resources.o $(RESFLAGS)
+TARGET=nativdlg
+OBJECTS = $(TARGET).o
 
-clean:
-       rm -f $(OBJECTS) nativdlg$(GUISUFFIX).exe core *.rsc *.res
+include $(WXDIR)/src/makeprog.g95