repo.or.cz
/
texed.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Begin re-write of basic display functions in scheme
[texed.git]
/
makefile
blob
7cd4ffbfc30b20cde885522232ef6916c9ebe72b
1
2
FILES
=
guile_wrap.c buffer.c display.c main.c
3
4
CFLAGS
= -
Wall
-
Wextra
-
lncurses \
5
`guile-config compile`
\
6
`guile-config link`
7
8
# buffer:
9
# gcc -fPIC --shared buffer.c -o buffer.so
10
11
all
:
12
gcc
${
FILES
} ${
CFLAGS
} -
o texed
13