Browse CVS Repository
Contents of /shiki/shiki/Makefile
Parent Directory
| Revision Log
| Revision Graph
Revision 1.5 -
( show annotations)
( download)
Sat Feb 3 09:48:01 2007 UTC
(17 years, 1 month ago)
by aloha
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +1 -1 lines
response Gauche 0.8.8 (so require gauche and gauche-dev >= 0.8.8)
| 1 |
CC = gcc |
| 2 |
SHELL = sh |
| 3 |
CFLAGS = -Wall -g -DGAUCHE_API_0_8_8 $(GAUCHE_CFLAGS) $(GTK_CFLAGS) |
| 4 |
GAUCHE_CFLAGS = `gauche-config -I` |
| 5 |
GTK_CFLAGS = `pkg-config gtk+-2.0 --cflags` |
| 6 |
LFLAGS = $(GAUCHE_LFLAGS) $(GTK_LFLAGS) |
| 7 |
GAUCHE_LFLAGS = `gauche-config -L` `gauche-config -l` |
| 8 |
GTK_LFLAGS = `pkg-config gtk+-2.0 --libs` |
| 9 |
|
| 10 |
shiki : shiki.o buffer.o xyzzylisp.o |
| 11 |
$(CC) -o shiki shiki.o buffer.o xyzzylisp.o $(LFLAGS) |
| 12 |
shiki.o : shiki.h shiki.c |
| 13 |
$(SHELL) -c "gcc $(CFLAGS) -o shiki.o -c shiki.c" |
| 14 |
xyzzylisp.o : shiki.h xyzzylisp.c |
| 15 |
$(SHELL) -c "gcc $(CFLAGS) -o xyzzylisp.o -c xyzzylisp.c" |
| 16 |
xyzzylisp.c : xyzzylisp.stub |
| 17 |
gosh genstub xyzzylisp.stub |
| 18 |
buffer.o : shiki.h buffer.c |
| 19 |
$(SHELL) -c "gcc $(CFLAGS) -o buffer.o -c buffer.c" |
| 20 |
|
| 21 |
clean : |
| 22 |
rm shiki shiki.o buffer.o xyzzylisp.o |
|