Ignore:
Timestamp:
Aug 8, 2007, 9:16:10 PM (17 years ago)
Author:
rosiere
Message:

Modification des Makefile : pas de creation inutile de shell

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Makefile.Common

    r15 r48  
    6666
    6767$(DIR_OBJ)/%.o                  : $(DIR_SRC)/%.cpp $(HEADERS)
    68                                 @$(ECHO) "Compilation        : $*"
    69                                 $(CXX) $(CFLAGS) -c -o $@ $<
     68                                @\
     69                                $(ECHO) "Compilation        : $*";\
     70                                $(CXX) $(CFLAGS) -c -o $@ $<;
    7071
    7172$(DIR_OBJ)                      :
    72                                 @$(ECHO) "Create directory   : $@"
    73                                 @$(MKDIR) $@
     73                                @\
     74                                $(ECHO) "Create directory   : $@";\
     75                                $(MKDIR) $@
    7476
    7577common_clean                    :
    76                                 @$(ECHO) "Delete     temporary files in directory "$(PWD)
    77                                 @$(RM)  $(DIR_OBJ)      \
     78                                @\
     79                                $(ECHO) "Delete     temporary files in directory "$(PWD);\
     80                                $(RM)   $(DIR_OBJ)      \
    7881                                        $(DIR_BIN)      \
    7982                                        *~              \
    8083                                        $(DIR_SRC)/*~   \
    81                                         $(DIR_INC)/*~
     84                                        $(DIR_INC)/*~;
    8285
    8386common_help                     :
    84                                 @$(ECHO) " -----[ Common ]-------------------------------------"
    85                                 @$(ECHO) ""
    86                                 @$(ECHO) " * test_env             : test if environnment's variable is set"
    87                                 @$(ECHO) ""
     87                                @\
     88                                $(ECHO) " -----[ Common ]-------------------------------------";\
     89                                $(ECHO) "";\
     90                                $(ECHO) " * test_env             : test if environnment's variable is set";\
     91                                $(ECHO) "";
Note: See TracChangeset for help on using the changeset viewer.