repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 981025.
[wine/gsoc-2012-control.git]
/
programs
/
view
/
lccmakefile
blob
dbd19aee363a407d4dfd2747e37752311a7aeff3
1
2
WINE = ../../wine
3
LCCINC = c:\\lcc\\include
4
OBJS = view.obj init.obj winmain.obj
5
RES = viewrc.res
6
7
.SUFFIXES: .rc .obj .res
8
9
.c.obj:
10
$(WINE) "lcc -I$(LCCINC) $<"
11
12
.rc.res:
13
$(WINE) "lrc $<"
14
15
view.exe: $(OBJS) $(RES)
16
$(WINE) "lcclnk $(OBJS) $(RES)"
17
18
clean:
19
rm *.exe *.obj *.res