Makefile #1

  • //
  • guest/
  • bryan_costales/
  • Makefile
  • View
  • Commits
  • Open Download .zip Download (479 B)
CC=	gcc -g -Wall -D_REENTRANT
CFLAGS=	-I/usr/local/BerkeleyDB.4.1/include
LIBS=	-lbsdmalloc -lresolv -lsocket -lnsl -lpthread \
	-L/usr/local/BerkeleyDB.4.1/lib -ldb
PROG=	slowmilter
OBJS=	readconf.o mx.o util.o database.o header.o test.o milter.o
SRCS=	readconf.c mx.c util.c database.c header.c test.c milter.c

$(PROG): $(OBJS)
	$(CC) -o $(PROG) $(OBJS) -lmilter $(LIBS)

clean:
	rm -f *.o a.out core $(PROG)
	rm -rf release

test:
	cd tests; $(MAKE) test

readconf.o:	slow.h
# Change User Description Committed
#1 3838 bryan_costales This is pre-release 0.5 (rcs numbering) which includes:
    The milter source files and Makefile
    A regressive testing subdirectory with Makefile and /bin/sh scripts.
    A patches subdirectory with a patch file for V8.13 sendmail
All have been compiled and tested on a 64bit Sun Solaris 9 machine.