mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Initial revision
SVN revision: 9
This commit is contained in:
parent
5a6b27f0a6
commit
d1fb987f65
24
Makefile
Normal file
24
Makefile
Normal 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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user