Changeset c621f4aa in mainline for uspace/app/sbi/Makefile
- Timestamp:
- 2010-07-25T10:11:13Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 377cce8
- Parents:
- 24a2517 (diff), a2da43c (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/app/sbi/Makefile (moved) (moved from boot/arch/sparc64/loader/Makefile ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/Makefile
r24a2517 rc621f4aa 1 1 # 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 2 # Copyright (c) 2010 Jiri Svoboda 4 3 # All rights reserved. 5 4 # … … 28 27 # 29 28 30 include Makefile.common 29 USPACE_PREFIX = ../.. 30 LIBS = $(LIBCLUI_PREFIX)/libclui.a 31 EXTRA_CFLAGS = -D__HELENOS__ -I$(LIBCLUI_PREFIX) 31 32 32 .PHONY: all clean 33 BINARY = sbi 33 34 34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 35 SOURCES = \ 36 src/builtin/bi_boxed.c \ 37 src/builtin/bi_char.c \ 38 src/builtin/bi_error.c \ 39 src/builtin/bi_fun.c \ 40 src/builtin/bi_int.c \ 41 src/builtin/bi_textfile.c \ 42 src/builtin/bi_string.c \ 43 src/os/helenos.c \ 44 src/ancr.c \ 45 src/bigint.c \ 46 src/builtin.c \ 47 src/cspan.c \ 48 src/imode.c \ 49 src/input.c \ 50 src/intmap.c \ 51 src/lex.c \ 52 src/list.c \ 53 src/main.c \ 54 src/p_expr.c \ 55 src/p_type.c \ 56 src/parse.c \ 57 src/program.c \ 58 src/rdata.c \ 59 src/run.c \ 60 src/run_expr.c \ 61 src/run_texpr.c \ 62 src/stree.c \ 63 src/strtab.c \ 64 src/stype.c \ 65 src/stype_expr.c \ 66 src/symbol.c \ 67 src/tdata.c 37 68 38 clean: 39 for file in $(RD_SRVS) $(RD_SRVS_GENERIC) ; do \ 40 rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \ 41 done 42 for file in $(RD_APPS) $(RD_APPS_GENERIC) ; do \ 43 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 44 done 45 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 46 find . -name '*.o' -follow -exec rm \{\} \; 47 find . -name '*.co' -follow -exec rm \{\} \; 69 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.
