head     1.1;
branch   1.1.1;
access   ;
symbols  INIT:1.1.1.1 kida:1.1.1;
locks    ; strict;
comment  @# @;


1.1
date     2004.02.23.20.21.59;  author kida;  state Exp;
branches 1.1.1.1;
next     ;

1.1.1.1
date     2004.02.23.20.21.59;  author kida;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@all: sdl_xft

# compiler
CC=gcc

#include header

INCLUDE=./ 
LIBS=-L/usr/X11R6/lib -lX11 -lXft -lSDL -lfontconfig

#options

CFLAGS=-g

sdl_xft: sdlmain.o sdl_xft.o
	$(CC) -o sdl_xft $(LIBS) sdlmain.o sdl_xft.o

sdlmain.o:	sdlmain.c
	$(CC) -I$(INCLUDE) -I/usr/include/SDL -I/usr/include/X11R6/Xft  -I/usr/include/freetype2/ -L/usr/X11R6/lib $(CFLAGS) -c sdlmain.c 

sdl_xft.o : sdl_xft.c
	$(CC) -I$(INCLUDE) -I/usr/include/SDL -I/usr/include/X11R6/Xft   -I/usr/include/freetype2/ -L/usr/X11R6/lib $(CFLAGS) -c sdl_xft.c 


#make clean
clean :
	-rm -f *.o sdl_xft
@


1.1.1.1
log
@import sdl_xft
@
text
@@
