Changeset c621f4aa in mainline for uspace/app/sbi/Makefile


Ignore:
Timestamp:
2010-07-25T10:11:13Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
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.
Message:

Merge with mainline.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/Makefile

    r24a2517 rc621f4aa  
    11#
    2 # Copyright (c) 2005 Martin Decky
    3 # Copyright (c) 2007 Jakub Jermar
     2# Copyright (c) 2010 Jiri Svoboda
    43# All rights reserved.
    54#
     
    2827#
    2928
    30 include Makefile.common
     29USPACE_PREFIX = ../..
     30LIBS = $(LIBCLUI_PREFIX)/libclui.a
     31EXTRA_CFLAGS = -D__HELENOS__ -I$(LIBCLUI_PREFIX)
    3132
    32 .PHONY: all clean
     33BINARY = sbi
    3334
    34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs
    35         -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV)
    36         $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK)
     35SOURCES = \
     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
    3768
    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 \{\} \;
     69include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.