| 1 | # |
| 2 | # File: makelib.g95 |
| 3 | # Author: Julian Smart |
| 4 | # Created: 1999 |
| 5 | # Updated: |
| 6 | # Copyright: (c) Julian Smart, 1999 |
| 7 | # |
| 8 | # Include file for Cygwin/Mingw32 libraries |
| 9 | |
| 10 | WXDIR = $(WXWIN) |
| 11 | |
| 12 | # All common UNIX compiler flags and options are now in |
| 13 | # this central makefile. |
| 14 | include $(WXDIR)/src/makeg95.env |
| 15 | |
| 16 | all: $(LIBTARGET) $(EXTRATARGETS) |
| 17 | |
| 18 | $(LIBTARGET): $(OBJECTS) |
| 19 | ar $(AROPTIONS) $@ $(OBJECTS) |
| 20 | $(RANLIB) $@ |
| 21 | |
| 22 | clean: |
| 23 | -$(RM) $(OBJECTS) core *.rsc *.res |
| 24 | |
| 25 | cleanall: clean |
| 26 | -$(RM) $(LIBTARGET) |