projects
/
ossec-hids.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
- #10324: instalacija
[ossec-hids.git]
/
src
/
os_crypto
/
shared
/
Makefile
1
# Makefile for os_crypto shared
2
# Daniel B. Cid <dcid@sourcefire.com>||<daniel@underlinux.com.br>
3
4
PT=../../
5
NAME=shared
6
7
include ../../Config.Make
8
9
SRCS = *.c
10
OBJS = *.o
11
12
13
shared:
14
$(CC) $(CFLAGS) -c $(SRCS)
15
ar cru shared.a $(OBJS)
16
ranlib shared.a
17
clean:
18
${CLEAN}