Initial revision

SVN revision: 9
This commit is contained in:
Stefan Ritt 2001-12-21 15:34:31 +00:00
parent 5a6b27f0a6
commit d1fb987f65

24
Makefile Normal file
View File

@ -0,0 +1,24 @@
#
# Simple makefile for elogd
#
# S. Ritt, May 12th 2000
#
# add "-DUSE_CRYPT" and "-lcrypt" to use crypt() function
#
CC = gcc
LIBS =
ifeq ($(OSTYPE),solaris)
CC = gcc
LIBS = -lsocket -lnsl
endif
all: elogd elog
elog: elog.c
$(CC) -o elog elog.c $(LIBS)
elogd: elogd.c
$(CC) -o elogd elogd.c $(LIBS)