X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/27529614c292a298e67dd8db1f169c94a4df204c..62fc00206fd53e511dad75d95136c8b1a2559c55:/samples/config/makefile.g95 diff --git a/samples/config/makefile.g95 b/samples/config/makefile.g95 index 3f40760ddf..02cba35c7f 100644 --- a/samples/config/makefile.g95 +++ b/samples/config/makefile.g95 @@ -1,37 +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 conftest 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)/conftest.$(OBJSUFF) $(OBJDIR)/conftest_resources.$(OBJSUFF) - -all: $(OBJDIR) conftest$(GUISUFFIX)$(EXESUFF) - -wx: - -$(OBJDIR): - mkdir $(OBJDIR) - -conftest$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB) - $(CC) $(LDFLAGS) -o conftest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS) - -$(OBJDIR)/conftest.$(OBJSUFF): conftest.$(SRCSUFF) - $(CC) -c $(CPPFLAGS) -o $@ conftest.$(SRCSUFF) +TARGET=conftest +OBJECTS = $(TARGET).o -$(OBJDIR)/conftest_resources.o: conftest.rc - $(RESCOMP) -i conftest.rc -o $(OBJDIR)/conftest_resources.o $(RESFLAGS) +include $(WXDIR)/src/makeprog.g95 -clean: - rm -f $(OBJECTS) conftest$(GUISUFFIX).exe core *.rsc *.res