Changeset 68 for trunk/Softwares


Ignore:
Timestamp:
Dec 8, 2007, 5:12:36 PM (16 years ago)
Author:
rosiere
Message:

read_queue : systemC et vhdl ok !
queue : quelques petits modif pour avoir une queue de taille 1
nettoyage des fichiers *mkf*

Location:
trunk/Softwares/Min.or32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Softwares/Min.or32/Makefile

    r48 r68  
    2828$(DIR_BIN)/%.x.txt      : $(DIR_BIN)/%.x
    2929                        @\
    30                         $(ECHO) "List symbols        of $*";\
    31                         $(NM)      $(NM_OPT)      $^ > $@.nm;\
    32                         $(ECHO) "Display information of $*";\
     30                        $(ECHO) "List symbols        of $*";            \
     31                        $(NM)      $(NM_OPT)      $^ > $@.nm;           \
     32                        $(ECHO) "Display information of $*";            \
    3333                        $(OBJDUMP) $(OBJDUMP_OPT) $^ > $@;
    3434
    3535$(DIR_BIN)/%.x          : $(OBJ_SYS) $(OBJ)
    36                         @\
    37                         $(ECHO) "Linkage             of $*";\
     36                        @                                               \
     37                        $(ECHO) "Linkage             of $*";            \
    3838                        $(LD) -o $@ $^ $(LD_OPT);
    3939
    4040$(DIR_OBJ)/%.o          : $(DIR_ASM)/%.s       
    41                         @\
    42                         $(ECHO) "Compile             of $*";\
    43                         $(CC) $(CC_OPT) -I$(DIR_INC)    -o $@   -c $^ ;\
     41                        @                                               \
     42                        $(ECHO) "Compile             of $*";            \
     43                        $(CC) $(CC_OPT) -I$(DIR_INC)    -o $@   -c $^ ; \
    4444                        $(CC) $(CC_OPT) -I$(DIR_INC) -S -o $@.s -c $^ ;
    4545#                       @$(AS) $(AS_OPT) $^ -o $@
    4646
    4747$(DIR_OBJ)/%.o          : $(DIR_SYS)/%.s       
    48                         @\
    49                         $(ECHO) "Compile             of $*";\
    50                         $(CC) $(CC_OPT) -I$(DIR_INC)    -o $@   -c $^ ;\
     48                        @                                               \
     49                        $(ECHO) "Compile             of $*";            \
     50                        $(CC) $(CC_OPT) -I$(DIR_INC)    -o $@   -c $^ ; \
    5151                        $(CC) $(CC_OPT) -I$(DIR_INC) -S -o $@.s -c $^ ;
    5252#                       @$(AS) $(AS_OPT) $^ -o $@
    5353
    5454$(DIR_OBJ)/%.o          : $(DIR_C)/%.c
    55                         @\
    56                         $(ECHO) "Compile             of $*";\
    57                         $(CC) $(CC_OPT) -I$(DIR_INC)    -o $@   -c $^ ;\
     55                        @                                               \
     56                        $(ECHO) "Compile             of $*";            \
     57                        $(CC) $(CC_OPT) -I$(DIR_INC)    -o $@   -c $^ ; \
    5858                        $(CC) $(CC_OPT) -I$(DIR_INC) -S -o $@.s -c $^ ;
    5959
     
    7171clean                   :
    7272                        @\
    73                         $(ECHO) "Delete     temporary files              "`$(PWD)`;\
    74                         $(RM) $(DIR_OBJ) $(DIR_BIN);\
     73                        $(ECHO) "Delete     temporary files              "`$(PWD)`;             \
     74                        $(RM) $(DIR_OBJ) $(DIR_BIN);                                            \
    7575                        $(MAKE) clean_rec DIR_CLEAN=.;
    7676
     
    7878clean_rec               :
    7979                        @\
    80                         $(ECHO) "Delete     temporary files in directory $(DIR_CLEAN)";\
    81                         $(RM) -f $(DIR_CLEAN)/*~;\
     80                        $(ECHO) "Delete     temporary files in directory $(DIR_CLEAN)";         \
     81                        $(RM) -f $(DIR_CLEAN)/*~;                                               \
    8282                        for files in `$(LS) $(DIR_CLEAN)`; do                                   \
    8383                                if $(TEST) -d $(DIR_CLEAN)/$$files;                             \
  • trunk/Softwares/Min.or32/Makefile.morpheo

    r2 r68  
    33MKDIR                   = mkdir -p
    44ECHO                    = echo
    5 CCACHE                  = ccache
     5CCACHE                  =
    66LS                      = ls
    77TEST                    = test
Note: See TracChangeset for help on using the changeset viewer.