Changeset 76ca3f7 in mainline for uspace/srv/hid/fb/Makefile
- Timestamp:
- 2010-03-23T20:49:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/Makefile
rb48ebd19 r76ca3f7 28 28 # 29 29 30 include Makefile.common 30 USPACE_PREFIX = ../../.. 31 BINARY = fb 31 32 32 .PHONY: all clean 33 SOURCES = \ 34 main.c \ 35 ppm.c 33 36 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBS) 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 ifneq ($(UARCH),ia64) 38 SOURCES += fb.c \ 39 font-8x16.c 40 EXTRA_CFLAGS = -DFB_ENABLED 41 endif 37 42 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm 40 find . -name '*.o' -follow -exec rm \{\} \; 43 ifeq ($(UARCH),ia32) 44 SOURCES += ega.c 45 EXTRA_CFLAGS = -DEGA_ENABLED 46 endif 47 48 ifeq ($(UARCH),ia64) 49 SOURCES += ega.c \ 50 ski.c \ 51 serial_console.c 52 EXTRA_CFLAGS = -DSKI_ENABLED -DEGA_ENABLED 53 endif 54 55 ifeq ($(UARCH),amd64) 56 SOURCES += ega.c 57 EXTRA_CFLAGS = -DEGA_ENABLED 58 endif 59 60 ifeq ($(UARCH),mips32) 61 SOURCES += msim.c \ 62 serial_console.c 63 EXTRA_CFLAGS = -DMSIM_ENABLED 64 endif 65 66 ifeq ($(UARCH),sparc64) 67 ifeq ($(PROCESSOR), sun4v) 68 SOURCES += niagara.c \ 69 serial_console.c 70 EXTRA_CFLAGS = -DNIAGARA_ENABLED 71 endif 72 73 ifeq ($(MACHINE), serengeti) 74 SOURCES += sgcn.c \ 75 serial_console.c 76 EXTRA_CFLAGS = -DSGCN_ENABLED 77 endif 78 endif 79 80 EXTRA_CFLAGS += -D$(UARCH) 81 82 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.