AxWin3 - More RichText work
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / Makefile
1 # Project: Acess2 GUI v3 Window Manager
2
3 -include ../../Makefile.cfg
4
5 CPPFLAGS += -I include/ -I ../include/
6 CFLAGS += -std=gnu99
7
8 DIR := Apps/AxWin/3.0
9 BIN := AxWinWM
10 OBJ := main.o input.o video.o ipc.o image.o utf-8.o
11 OBJ += wm.o wm_input.o wm_render.o wm_render_text.o wm_hotkeys.o
12 OBJ += decorator.o
13 OBJ += renderers/passthru.o
14 OBJ += renderers/background.o
15 OBJ += renderers/menu.o
16 OBJ += renderers/richtext.o
17 # TODO: Move to a lower makefile
18 OBJ += renderers/widget.o
19 OBJ += renderers/widget/button.o
20 OBJ += renderers/widget/image.o
21 OBJ += renderers/widget/disptext.o
22 OBJ += renderers/widget/textinput.o
23 OBJ += renderers/widget/spacer.o
24
25 LDFLAGS += -limage_sif -luri -lnet
26
27 -include ../../Makefile.tpl
28
29 #all: resources/LogoSmall.sif.res.h
30
31 %.res.h: % Makefile
32         echo "#define RESOURCE_$(notdir $<) \\"| sed -e 's/\./_/g' > $@
33         base64 $< | sed -e 's/.*/"&"\\/' >> $@
34         echo "" >> $@

UCC git Repository :: git.ucc.asn.au