Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
MSP-OpenSSL
Commits
9ba69184
Commit
9ba69184
authored
Jun 12, 2018
by
powelld
Browse files
Added missing makefile
parent
8ae53818
Changes
1
Hide whitespace changes
Inline
Side-by-side
evaluation/client_server/Makefile
0 → 100644
View file @
9ba69184
CC
=
gcc
## with debug
CFLAG
=
-g
-Wall
-DDEBUG
=
1
-DVERBOSE
=
1
## With even more debug...
#CFLAG=-g -Wall -DDEBUG=1
#LD= -L/usr/local/ssl/lib -lssl -lcrypto -ldl -lpthread
LD
=
-L
../..
-lssl
-lcrypto
-ldl
-lpthread
#INCLUDES= -I/usr/local/ssl/include
INCLUDES
=
-I
../../include
CFLAGS
=
$(INCLUDES)
$(CFLAG)
#CFLAGS= -DMONOLITH $(INCLUDES) $(CFLAG)
# (what is DMONOLITH doing?)
all
:
wclient wserver mbox
wclient
:
wclient.o common.o
$(CC)
$(CFLAGS)
wclient.o common.o
-o
wclient
$(LD)
wserver
:
wserver.o common.o
$(CC)
$(CFLAGS)
wserver.o common.o
-o
wserver
$(LD)
mbox
:
middlebox.o common.o
$(CC)
$(CFLAGS)
middlebox.o common.o
-o
mbox
$(LD)
clean
:
rm
*
.o wclient wserver mbox
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment