#
-# 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