]> git.saurik.com Git - wxWidgets.git/blame - src/makelib.g95
Moved the declaration of wxEVT_NULL to event.cpp and made it extern in the header...
[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
10WXDIR = $(WXWIN)
11
12# All common UNIX compiler flags and options are now in
13# this central makefile.
14include $(WXDIR)/src/makeg95.env
15
16all: $(LIBTARGET) $(EXTRATARGETS)
17
18$(LIBTARGET): $(OBJECTS)
19 ar $(AROPTIONS) $@ $(OBJECTS)
20 $(RANLIB) $@
21
22clean:
6e6d9f9e
VZ
23 -$(RM) $(OBJECTS) core *.rsc *.res
24
25cleanall: clean
26 -$(RM) $(LIBTARGET)