1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#############################################################################
## Name: build/Wx/build/Config/gmake.mak
## Purpose: extracts some flag information from makeg95.env
## Author: Mattia Barbon
## Modified by:
## Created: 10/12/2000
## RCS-ID: $Id: gmake.mak,v 1.1 2005/08/16 20:52:34 mbarbon Exp $
## Copyright: (c) 2000 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
WXUSINGDLL=1
include $(WXWIN)/src/makeg95.env
version:
echo $(WXVERSION)$(wxRELEASE_NUMBER)
wxdir:
echo $(WXWIN)
# for 2.4.0 or less vs. 2.4.1 and 2.5.0
cxxflags:
echo $(CPPFLAGS) $(ALL_CPPFLAGS) $(ALL_CXXFLAGS)
linkflags:
echo $(LINKFLAGS)
libs:
echo $(LIBS)
# this one is for import library ( not in wx-config )
implib:
echo $(WXLIB)
|