-l ssl is not necessary here

This commit is contained in:
Pierre Pronchery 2008-04-12 22:09:03 +00:00
parent 068c7f53a8
commit a4cb8923ef
2 changed files with 4 additions and 5 deletions

View File

@ -2,13 +2,12 @@ TARGETS = Probe DaMon
PREFIX = /usr/local
DESTDIR =
BINDIR = $(PREFIX)/bin
INCLUDEDIR= $(PREFIX)/include
CC = cc
CPPFLAGS=
CFLAGSF = -W
CFLAGS = -Wall -g -O2 -ansi
LDFLAGSF= -l System -rdynamic
LDFLAGS = -L $(PREFIX)/lib -Wl,-rpath,$(PREFIX)/lib
LDFLAGSF= -l System
LDFLAGS = -rdynamic -L $(PREFIX)/lib -Wl,-rpath,$(PREFIX)/lib
RM = rm -f
MKDIR = mkdir -p
INSTALL = install

View File

@ -1,8 +1,8 @@
targets=Probe,DaMon
cflags_force=-W
cflags=-Wall -g -O2 -ansi
ldflags_force=-l System -l dl -rdynamic
ldflags=-L $(PREFIX)/lib -Wl,-rpath,$(PREFIX)/lib
ldflags_force=-l System -l dl
ldflags=-rdynamic -L $(PREFIX)/lib -Wl,-rpath,$(PREFIX)/lib
dist=Makefile
[Probe]