forked from ghaerr/microwindows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjects.rules
More file actions
88 lines (76 loc) · 2.49 KB
/
Copy pathObjects.rules
File metadata and controls
88 lines (76 loc) · 2.49 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
##############################################################################
# Microwindows Makefile
# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr
# Portions Copyright (c) 2002 Koninklijke Philips Electronics N.V.
#
# This makefile adds the engine object files to the OBJS variable.
# It does not define any targets.
#
# This makefile is only intended to be included from other makefiles.
##############################################################################
ifeq ($(ZAURUSMOUSE), Y)
CFLAGS += -DFLIP_MOUSE_IN_PORTRAIT_MODE=0
endif
# List of objects to compile
MW_CORE_OBJS += \
$(MW_DIR_OBJ)/engine/devopen.o \
$(MW_DIR_OBJ)/engine/devdraw.o \
$(MW_DIR_OBJ)/engine/devblit.o \
$(MW_DIR_OBJ)/engine/convblit_8888.o \
$(MW_DIR_OBJ)/engine/convblit_mask.o \
$(MW_DIR_OBJ)/engine/convblit_frameb.o \
$(MW_DIR_OBJ)/engine/devfont.o \
$(MW_DIR_OBJ)/engine/devmouse.o \
$(MW_DIR_OBJ)/engine/devkbd.o \
$(MW_DIR_OBJ)/engine/devclip.o \
MW_CORE_OBJS += \
$(MW_DIR_OBJ)/engine/devrgn.o \
$(MW_DIR_OBJ)/engine/devtimer.o \
$(MW_DIR_OBJ)/engine/devpal1.o \
$(MW_DIR_OBJ)/engine/devpal2.o \
$(MW_DIR_OBJ)/engine/devimage.o \
$(MW_DIR_OBJ)/engine/devimage_stretch.o \
$(MW_DIR_OBJ)/engine/image_bmp.o \
$(MW_DIR_OBJ)/engine/image_gif.o \
$(MW_DIR_OBJ)/engine/image_jpeg.o \
$(MW_DIR_OBJ)/engine/image_png.o \
$(MW_DIR_OBJ)/engine/image_pnm.o \
$(MW_DIR_OBJ)/engine/image_tiff.o \
$(MW_DIR_OBJ)/engine/image_xpm.o \
$(MW_DIR_OBJ)/engine/devlist.o \
$(MW_DIR_OBJ)/engine/selfont.o \
$(MW_DIR_OBJ)/engine/devrgn2.o \
$(MW_DIR_OBJ)/engine/devarc.o \
$(MW_DIR_OBJ)/engine/devpoly.o \
$(MW_DIR_OBJ)/engine/devstipple.o \
$(MW_DIR_OBJ)/engine/font_dbcs.o
ifeq ($(HAVE_FREETYPE_2_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_freetype2.o
endif
ifeq ($(HAVE_FNT_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_fnt.o
endif
ifeq ($(HAVE_PCF_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_pcf.o
endif
ifeq ($(HAVE_T1LIB_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_t1lib.o
endif
ifeq ($(HAVE_HZK_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_hzk.o
endif
ifeq ($(HAVE_HBF_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_hbf.o
MW_CORE_OBJS += $(MW_DIR_OBJ)/drivers/hbf.o
endif
ifeq ($(HAVE_EUCJP_SUPPORT), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/font_eucjp.o
endif
ifneq ($(ARCH), ELKS)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/devpal8.o
endif
ifeq ($(GRAYPALETTE), Y)
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/devpalgray4.o
else
MW_CORE_OBJS += $(MW_DIR_OBJ)/engine/devpal4.o
endif