-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile_win
More file actions
41 lines (34 loc) · 926 Bytes
/
Makefile_win
File metadata and controls
41 lines (34 loc) · 926 Bytes
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
36
37
38
39
40
# FiveWeb makefile
all : .\lib\fiveweb.lib
PRG_OBJS = ./obj/fiveweb.obj \
./obj/bootstra.obj \
./obj/browse.obj \
./obj/button.obj \
./obj/checkbox.obj \
./obj/combobox.obj \
./obj/control.obj \
./obj/datepick.obj \
./obj/dialog.obj \
./obj/errsys.obj \
./obj/filename.obj \
./obj/folder.obj \
./obj/get.obj \
./obj/harbour.obj \
./obj/image.obj \
./obj/menu.obj \
./obj/menuitem.obj \
./obj/pdmenu.obj \
./obj/progbar.obj \
./obj/radio.obj \
./obj/toolbar.obj \
./obj/valblank.obj \
./obj/say.obj \
./obj/window.obj
.\lib\fiveweb.lib : $(PRG_OBJS)
./obj/%.obj : ./obj/%.c
c:\bcc7\bin\bcc32 -c -I./../harbour/include -o$@ $<
c:\bcc7\bin\tlib lib\fiveweb -+ obj\$*.obj
./obj/%.c : ./source/function/%.prg
.\..\harbour\bin\harbour $< -o.\$@ -n -I.\..\harbour\include -I.\include
./obj/%.c : ./source/classes/%.prg
.\..\harbour\bin\harbour $< -o.\$@ -n -I.\..\harbour\include -I.\include