1999-02-09 16:00:23 +00:00
|
|
|
#
|
|
|
|
# File: makelib.g95
|
|
|
|
# Author: Julian Smart
|
|
|
|
# Created: 1999
|
|
|
|
# Updated:
|
|
|
|
# Copyright: (c) Julian Smart, 1999
|
|
|
|
#
|
|
|
|
# Include file for Cygwin/Mingw32 libraries
|
|
|
|
|
|
|
|
# All common UNIX compiler flags and options are now in
|
|
|
|
# this central makefile.
|
|
|
|
include $(WXDIR)/src/makeg95.env
|
|
|
|
|
|
|
|
all: $(LIBTARGET) $(EXTRATARGETS)
|
|
|
|
|
|
|
|
$(LIBTARGET): $(OBJECTS)
|
|
|
|
ar $(AROPTIONS) $@ $(OBJECTS)
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
clean:
|
2001-03-21 19:13:09 +00:00
|
|
|
-$(RM) $(OBJECTS) core *.rsc *.res
|
|
|
|
|
|
|
|
cleanall: clean
|
2002-12-04 14:11:26 +00:00
|
|
|
-$(RM) $(LIBTARGET)
|