52b51c2791
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11364 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
34 lines
546 B
Plaintext
34 lines
546 B
Plaintext
#
|
|
# File: makelib.b32
|
|
# Author: Julian Smart
|
|
# Created: 1999
|
|
# Updated:
|
|
# Copyright:
|
|
#
|
|
# Include file for libraries. Set LIBTARGET and OBJECTS
|
|
# before including this file.
|
|
|
|
# WXWIN and BCCDIR are set by parent make
|
|
|
|
WXDIR = $(WXWIN)
|
|
|
|
!include $(WXDIR)\src\makeb32.env
|
|
|
|
lib: $(LIBTARGET)
|
|
|
|
$(LIBTARGET): $(OBJECTS)
|
|
-$(RM) $(LIBTARGET)
|
|
tlib "$(LIBTARGET)" /P512 @&&!
|
|
+$(OBJECTS:.obj =.obj +)
|
|
!
|
|
|
|
clean:
|
|
-$(RM) *.obj
|
|
-$(RM) *.exe
|
|
-$(RM) *.res
|
|
-$(RM) *.map
|
|
-$(RM) *.rws
|
|
-$(RM) $(LIBTARGET)
|
|
|
|
|