]>
Commit | Line | Data |
---|---|---|
dbda9e86 JS |
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 | ||
dbda9e86 JS |
10 | # All common UNIX compiler flags and options are now in |
11 | # this central makefile. | |
12 | include $(WXDIR)/src/makeg95.env | |
13 | ||
14 | all: $(LIBTARGET) $(EXTRATARGETS) | |
15 | ||
16 | $(LIBTARGET): $(OBJECTS) | |
17 | ar $(AROPTIONS) $@ $(OBJECTS) | |
18 | $(RANLIB) $@ | |
19 | ||
20 | clean: | |
6e6d9f9e VZ |
21 | -$(RM) $(OBJECTS) core *.rsc *.res |
22 | ||
23 | cleanall: clean | |
2b5f62a0 | 24 | -$(RM) $(LIBTARGET) |