source: configure @ f7b30b9

Last change on this file since f7b30b9 was f7b30b9, checked in by Mateusz Hromada <ruanda@…>, 15 years ago

Improvements on configure script.

  • config.h has more details about project
  • configure creates src directory unless it exists
  • Property mode set to 100755
File size: 279 bytes
Line 
1#!/bin/sh
2
3. ./auto/options
4
5if [ -f ./src/config.h ]; then
6  echo ERROR: config.h exists
7  exit
8fi
9
10if [ -f ./Makefile ]; then
11  echo ERROR: Makefile exists
12  exit
13fi
14
15if [ ! -d ./src ]; then
16  mkdir ./src
17fi
18
19. ./auto/output/config_h
20. ./auto/output/Makefile
21
22. ./auto/summary
Note: See TracBrowser for help on using the repository browser.