Changeset 371bd7d in mainline for uspace/srv/hid/fb/Makefile
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (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 moved
-
uspace/srv/hid/fb/Makefile (moved) (moved from uspace/app/klog/Makefile.build ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/Makefile
rcd82bb1 r371bd7d 28 28 # 29 29 30 ## Setup toolchain 31 # 32 33 include Makefile.common 34 include $(LIBC_PREFIX)/Makefile.toolchain 35 36 ## Sources 37 # 30 USPACE_PREFIX = ../../.. 31 BINARY = fb 38 32 39 33 SOURCES = \ 40 klog.c 34 main.c \ 35 ppm.c 41 36 42 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 37 ifneq ($(UARCH),ia64) 38 SOURCES += fb.c \ 39 font-8x16.c 40 EXTRA_CFLAGS = -DFB_ENABLED 41 endif 43 42 44 .PHONY: all 43 ifeq ($(UARCH),ia32) 44 SOURCES += ega.c 45 EXTRA_CFLAGS = -DEGA_ENABLED 46 endif 45 47 46 all: $(OUTPUT) $(OUTPUT).disasm 48 ifeq ($(UARCH),ia64) 49 SOURCES += ega.c \ 50 ski.c \ 51 serial_console.c 52 EXTRA_CFLAGS = -DSKI_ENABLED -DEGA_ENABLED 53 endif 47 54 48 -include $(DEPEND) 55 ifeq ($(UARCH),amd64) 56 SOURCES += ega.c 57 EXTRA_CFLAGS = -DEGA_ENABLED 58 endif 49 59 50 $(OUTPUT).disasm: $(OUTPUT) 51 $(OBJDUMP) -d $< > $@ 60 ifeq ($(UARCH),mips32) 61 SOURCES += msim.c \ 62 serial_console.c 63 EXTRA_CFLAGS = -DMSIM_ENABLED 64 endif 52 65 53 $(OUTPUT): $(OBJECTS) $(LIBS) 54 $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map 66 ifeq ($(UARCH),sparc64) 67 ifeq ($(PROCESSOR), sun4v) 68 SOURCES += niagara.c \ 69 serial_console.c 70 EXTRA_CFLAGS = -DNIAGARA_ENABLED 71 endif 55 72 56 %.o: %.c $(DEPEND) 57 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 73 ifeq ($(MACHINE), serengeti) 74 SOURCES += sgcn.c \ 75 serial_console.c 76 EXTRA_CFLAGS = -DSGCN_ENABLED 77 endif 78 endif 58 79 59 $(DEPEND): 60 makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(SOURCES) > $@ 2> /dev/null 61 -[ -f $(DEPEND_PREV) ] && diff -q $(DEPEND_PREV) $@ && mv -f $(DEPEND_PREV) $@ 80 EXTRA_CFLAGS += -D$(UARCH) 81 82 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.
