mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Added elconv
SVN revision: 82
This commit is contained in:
parent
1f7e6d7f4f
commit
0b12b134c0
15
Makefile
15
Makefile
@ -9,12 +9,12 @@
|
||||
|
||||
CC = gcc
|
||||
LIBS =
|
||||
CFLAGS = -march=i586
|
||||
EXECS = elog elogd
|
||||
CFLAGS = -g -O
|
||||
EXECS = elog elogd elconv
|
||||
DESTDIR = /usr/local/sbin
|
||||
|
||||
INSTALL=/usr/bin/install
|
||||
RM=/bin/rm
|
||||
INSTALL = /usr/bin/install
|
||||
RM = /bin/rm
|
||||
|
||||
ifeq ($(OSTYPE),solaris)
|
||||
CC = gcc
|
||||
@ -30,11 +30,8 @@ endif
|
||||
|
||||
all: $(EXECS)
|
||||
|
||||
elog: elog.c
|
||||
$(CC) $(CFLAGS) -o elog elog.c $(LIBS)
|
||||
|
||||
elogd: elogd.c
|
||||
$(CC) $(CFLAGS) -o elogd elogd.c $(LIBS)
|
||||
%: %.c
|
||||
$(CC) $(CFLAGS) -o $@ $< $(LIBS)
|
||||
|
||||
install: $(EXECS)
|
||||
$(INSTALL) -m 0755 -o bin -g bin $(EXECS) $(DESTDIR)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user