]> git.saurik.com Git - wxWidgets.git/blame - src/makelib.g95
ugly fix for warnings when wxUSE_STL==0 not breaking compilation when wxUSE_STL==1
[wxWidgets.git] / src / makelib.g95
CommitLineData
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.
12include $(WXDIR)/src/makeg95.env
13
14all: $(LIBTARGET) $(EXTRATARGETS)
15
16$(LIBTARGET): $(OBJECTS)
17 ar $(AROPTIONS) $@ $(OBJECTS)
18 $(RANLIB) $@
19
20clean:
6e6d9f9e
VZ
21 -$(RM) $(OBJECTS) core *.rsc *.res
22
23cleanall: clean
2b5f62a0 24 -$(RM) $(LIBTARGET)