Files
elog/Makefile
T
ritt d1fb987f65 Initial revision
SVN revision: 9
2001-12-21 15:34:31 +00:00

25 lines
310 B
Makefile

#
# 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)