diff options
author | W-Mark Kubacki <wmark@hurrikane.de> | 2010-03-18 13:44:14 +0100 |
---|---|---|
committer | W-Mark Kubacki <wmark@hurrikane.de> | 2010-03-18 13:45:28 +0100 |
commit | 94cd6dbe6705f17a1611e926333965b6e93dcccf (patch) | |
tree | d60acdda4705ca1a6bddafbe55ce0215ee0b5962 /Makefile | |
parent | 28ac6f9aa5e7dadf9aaf2062ab003a0fb4c82ad8 (diff) | |
download | fcgiwrap-94cd6dbe6705f17a1611e926333965b6e93dcccf.tar.xz fcgiwrap-94cd6dbe6705f17a1611e926333965b6e93dcccf.zip |
Makefile renamed to be modified to be input for autoconf
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index f4c0395..0000000 --- a/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -all: fcgiwrap -install: all - [ -f /usr/local/bin/fcgiwrap ] && mv /usr/local/bin/fcgiwrap /usr/local/bin/fcgiwrap~ - cp fcgiwrap /usr/local/bin - rm /usr/local/bin/fcgiwrap~ - -fcgiwrap: fcgiwrap.c - gcc -std=gnu99 -Wall -Wextra -Werror -pedantic -O2 -g3 fcgiwrap.c -o fcgiwrap -lfcgi - -clean: - -rm fcgiwrap - |