diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2010-03-18 13:44:14 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2010-03-18 13:44:14 +0100 |
| commit | 063a0746d6f6333d5195635b9ee3ef85210cf1e3 (patch) | |
| tree | d60acdda4705ca1a6bddafbe55ce0215ee0b5962 /Makefile.in | |
| parent | 898a0b9c22644aed4e8843c54e87ebaca206770a (diff) | |
Makefile renamed to be modified to be input for autoconf
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..f4c0395 --- /dev/null +++ b/Makefile.in @@ -0,0 +1,12 @@ +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 + |
