|
|
| |
AC_CHECK_FUNCS(mmap strerror) | AC_CHECK_FUNCS(mmap strerror) |
AC_CHECK_FUNCS(getopt_long) | AC_CHECK_FUNCS(getopt_long) |
|
AC_CHECK_FUNCS(strndup) |
| |
AC_OUTPUT(Makefile) | AC_OUTPUT(Makefile) |
|
|
.SUFFIXES: | .SUFFIXES: |
.SUFFIXES: .c .o | .SUFFIXES: .c .o |
| |
OBJS= rzip.o runzip.o main.o stream.o util.o crc32.o |
OBJS= rzip.o runzip.o strutils.o main.o stream.o util.o crc32.o |
| |
# note that the -I. is needed to handle config.h when using VPATH | # note that the -I. is needed to handle config.h when using VPATH |
.c.o: | .c.o: |
|
|
/* rzip compression - main program */ | /* rzip compression - main program */ |
| |
#include "rzip.h" | #include "rzip.h" |
|
#include "strutils.h" |
| |
static void usage(void) | static void usage(void) |
{ | { |