Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
M
MSP-OpenSSL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cyber security
T
TS 103 523 MSP
TLMSP
MSP-OpenSSL
Commits
9ba69184
Commit
9ba69184
authored
Jun 12, 2018
by
powelld
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing makefile
parent
8ae53818
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
Makefile
evaluation/client_server/Makefile
+26
-0
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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