projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
typo fixed: should be lpthread, not -lpthread in THREAD_OPTS
[wxWidgets.git]
/
src
/
makelib.wat
1
WXDIR = $(%WXWIN)
2
3
!include $(WXDIR)\src\makewat.env
4
5
WXLIB = $(WXDIR)\lib
6
LNK = tmp.lbc
7
8
all: $(LIBTARGET)
9
10
$(LIBTARGET) : $(OBJECTS)
11
%create tmp.lbc
12
@for %i in ( $(OBJECTS) ) do @%append tmp.lbc +%i
13
wlib /b /c /n /p=512 $^@ @tmp.lbc
14
15
clean: .SYMBOLIC
16
-erase *.obj
17
-erase *.bak
18
-erase *.err
19
-erase *.pch
20
-erase *.lib
21
-erase *.lbc
22
-erase *.res
23
-erase *.exe
24
-erase *.lbc
25
-erase $(LIBTARGET)
26