DEADSOFTWARE
GIT
/
REPO
/
FRED-BOY
Projects
/
bbcp.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
new -> BlackBox
[bbcp.git]
/
BlackBox
/
_OpenBSD_
/
Lin
/
Rsrc
/
loader
/
Makefile
1
# This is BSD Makefile
2
# BSD GNU
3
# ${.TARGET} $@
4
# ${.ALLSRC} $^
5
# ${.IMPSRC} $<
6
7
CFLAGS
+= -
Wall
-
O0
-
g
8
9
all
:
loader
10
11
# -pthread required to dlopen libraries that depends on pthread
12
13
loader
:
loader.c
14
${
CC
} ${
CFLAGS
} -
o
${
.TARGET
} ${
.ALLSRC
} -
pthread
15
16
clean
:
17
rm
-
f loader