repo.or.cz
/
rofl0r-GfxRip.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
compile as C
[rofl0r-GfxRip.git]
/
Makefile
blob
fb3ab4a8a5a38781ee1d75c067a73e7452ac90f0
1
SRCS
=
GfxRip.c
2
OBJS
=
GfxRip.o
3
PROG
=
GfxRip
4
LIBS
=
bgui2
/
lib
/
libbgui.a
5
6
CFLAGS
=-
std
=
c99
7
8
-
include
config.mak
9
10
all
: $(
PROG
)
11
12
clean
:
13
rm
-
f
$(
PROG
)
14
rm
-
f
$(
OBJS
)
15
16
$(
PROG
): $(
OBJS
) $(
LIBS
)
17
$(
CC
) -
o
$
@
$
^
-
lalleg
$(
LDFLAGS
)
18
19
%
.o
: %
.
cpp
20
$(
CC
) $(
INC
) $(
CPPFLAGS
) $(
CFLAGS
) -
c
-
o
$
@
$<
21
22
$(
LIBS
):
23
make
-
C bgui2
/
src
-
f Makefile.unx
24
25
.PHONY
:
all clean
26