mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-20 22:05:06 +00:00
25 lines
462 B
Text
25 lines
462 B
Text
|
|
#
|
||
|
|
# 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)
|