Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
25 lines
486 B
Plaintext
25 lines
486 B
Plaintext
#
|
|
# 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:
|
|
-$(RM) $(OBJECTS) core *.rsc *.res
|
|
|
|
cleanall: clean
|
|
-$(RM) $(LIBTARGET)
|