Changeset f7b30b9


Ignore:
Timestamp:
06/05/09 00:52:29 (15 years ago)
Author:
Mateusz Hromada <ruanda@…>
Branches:
master
Children:
63a5739
Parents:
8338227
git-author:
Mateusz Hromada <ruanda@…> (06/05/09 00:52:29)
git-committer:
Mateusz Hromada <ruanda@…> (06/05/09 00:52:29)
Message:

Improvements on configure script.

  • config.h has more details about project
  • configure creates src directory unless it exists
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • auto/output/Makefile

    rc08f3b1 rf7b30b9  
    5151.PHONY: all 
    5252all: \$(PROGRAMS) 
    53         echo all 
    5453        #make -C app compile 
    5554 
  • auto/output/config_h

    rc08f3b1 rf7b30b9  
    55#define CONFIG_H 
    66 
    7 #define PROJECT_NAME    "$PROJECT_NAME" 
    8 #define PROJECT_VERSION "$PROJECT_VERSION" 
    9 #define PROJECT_PAGE    "$PROJECT_PAGE" 
    10 #define PROJECT_MAIL    "$PROJECT_MAIL" 
     7#define PROJECT_NAME      "$PROJECT_NAME" 
     8#define PROJECT_FULLNAME  "$PROJECT_FULLNAME" 
     9#define PROJECT_COPYRIGHT "$PROJECT_COPYRIGHT" 
     10#define PROJECT_VERSION   "$PROJECT_VERSION" 
     11#define PROJECT_PAGE      "$PROJECT_PAGE" 
     12#define PROJECT_MAIL      "$PROJECT_MAIL" 
    1113 
    1214#endif /* CONFIG_H */ 
  • configure

    rc08f3b1 rf7b30b9  
    1313fi 
    1414 
     15if [ ! -d ./src ]; then 
     16  mkdir ./src 
     17fi 
     18 
    1519. ./auto/output/config_h 
    1620. ./auto/output/Makefile 
Note: See TracChangeset for help on using the changeset viewer.