[Lapetus-cvs] lapetus makefile,1.4,1.5 text.c,1.1,1.2
Status: Inactive
Brought to you by:
cyberwarriorx
From: Theo B. <cyb...@us...> - 2007-03-01 00:50:46
|
Update of /cvsroot/lapetus/lapetus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1927 Modified Files: makefile text.c Log Message: -Fixed a compile error in text.c -Added text.c and pal.c to makefile -Did a few tweaks to the makefile Index: makefile =================================================================== RCS file: /cvsroot/lapetus/lapetus/makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- makefile 28 Feb 2007 04:28:37 -0000 1.4 +++ makefile 1 Mar 2007 00:50:42 -0000 1.5 @@ -2,16 +2,19 @@ AS = sh-coff-as AR = sh-coff-ar -GCC = C:\PROGRA~1\kpit\GNUSHV~1\Sh-coff - +GCC = C:\PROGRA~1\kpitcu~1\GNUSHV~1\Sh-coff\sh-coff +#LIBDIR = $(GCC)\lib LIBDIR = . -CFLAGS = -O2 -Wall -m2 -I$(GCC)\include\g++-v3 +#INCDIR = $(GCC)\include +INCDIR = . +CFLAGS = -O2 -Wall -m2 -I$(INCDIR) ASFLAGS = ARFLAGS = rv -OBJS = commlink.o dsp.o int.o lapetus.o smpc.o timer.o vdpinit.o scrscr.o rotscr.o +OBJS = commlink.o dsp.o int.o lapetus.o smpc.o timer.o \ + vdpinit.o scrscr.o rotscr.o text.o pal.o -TARGET = $(LIBDIR)/lapetus.a +TARGET = $(LIBDIR)/liblapetus.a all: $(TARGET) Index: text.c =================================================================== RCS file: /cvsroot/lapetus/lapetus/text.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- text.c 28 Feb 2007 07:03:54 -0000 1.1 +++ text.c 1 Mar 2007 00:50:42 -0000 1.2 @@ -18,6 +18,7 @@ */ #include <stdio.h> +#include <stdarg.h> #include "lapetus.h" ////////////////////////////////////////////////////////////////////////////// @@ -31,7 +32,6 @@ void VdpPrintf(int x, int y, int color, char *format, ...) { char string[256]; // I hope that's enough - int i; va_list arg; va_start(arg, format); |