Changeset 7c014d1 in mainline for uspace/srv/hid/fb/Makefile
- Timestamp:
- 2011-09-09T15:46:21Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c69646f8
- Parents:
- 14a60e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/Makefile
r14a60e3 r7c014d1 29 29 30 30 USPACE_PREFIX = ../../.. 31 ROOT_PATH = $(USPACE_PREFIX)/.. 32 33 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 34 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 35 31 LIBS = $(LIBFB_PREFIX)/libfb.a 32 EXTRA_CFLAGS += -I$(LIBFB_PREFIX) 36 33 BINARY = fb 37 34 38 -include $(COMMON_MAKEFILE)39 -include $(CONFIG_MAKEFILE)40 41 35 SOURCES = \ 42 main.c 43 44 ifneq ($(UARCH),ia64) 45 SOURCES += \ 46 fb.c \ 47 font-8x16.c 48 EXTRA_CFLAGS += -DFB_ENABLED 49 endif 50 51 ifeq ($(UARCH),ia32) 52 SOURCES += \ 53 ega.c 54 EXTRA_CFLAGS += -DEGA_ENABLED 55 endif 56 57 ifeq ($(UARCH),ia64) 58 SOURCES += \ 59 ega.c \ 60 ski.c \ 61 serial_console.c 62 EXTRA_CFLAGS += -DSKI_ENABLED -DEGA_ENABLED 63 endif 64 65 ifeq ($(UARCH),amd64) 66 SOURCES += \ 67 ega.c 68 EXTRA_CFLAGS += -DEGA_ENABLED 69 endif 70 71 ifeq ($(UARCH),mips32) 72 SOURCES += \ 73 msim.c \ 74 serial_console.c 75 EXTRA_CFLAGS += -DMSIM_ENABLED 76 endif 77 78 ifeq ($(UARCH),sparc64) 79 ifeq ($(PROCESSOR),sun4v) 80 SOURCES += \ 81 niagara.c \ 82 serial_console.c 83 EXTRA_CFLAGS += -DNIAGARA_ENABLED 84 endif 85 endif 86 87 LIBS = $(LIBIMGMAP_PREFIX)/libimgmap.a 88 EXTRA_CFLAGS += -I$(LIBIMGMAP_PREFIX) -D$(UARCH) 36 gfx/font-8x16.c \ 37 ctl/serial.c \ 38 port/ega.c \ 39 port/kfb.c \ 40 port/kchar.c \ 41 port/niagara.c \ 42 port/ski.c \ 43 proto/vt100.c \ 44 fb.c 89 45 90 46 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.