-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (36 loc) · 872 Bytes
/
Makefile
File metadata and controls
42 lines (36 loc) · 872 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
41
42
# FiveWeb makefile
all : ./lib/fiveweb.a
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/say.obj \
obj/toolbar.obj \
obj/valblank.obj \
obj/window.obj
./lib/fiveweb.a : $(PRG_OBJS)
obj/%.obj : obj/%.c
mkdir -p obj
mkdir -p objc
gcc -c -I./../harbour/include -o$@ $<
ar rc ./lib/libfiveweb.a $@
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