Added text display function. (Only 0 to 127 ASCII characters, kanji is not supported)
Changed to create Wonx class and manage all resources with Wonx class. (See Wonx.x WonxP.h) When p is pressed to switch display / non-display of the screen, redraw the LCD panel Improvement. Added -Wall to compile option. We have summarized the processing part of the function which is duplicated processing in disp.c. Version 0.1 beta - from wonx-b01.tar.gz
This commit is contained in:
8
Makefile
8
Makefile
@@ -2,10 +2,10 @@ XINCLUDEDIR = /usr/X11R6/include
|
||||
INCLUDEDIR = .
|
||||
XLIBDIR = /usr/X11R6/lib
|
||||
|
||||
VERSION = Wonx-a07
|
||||
PKGNAME = wonx-a07
|
||||
VERSION = Wonx-b01
|
||||
PKGNAME = wonx-b01
|
||||
|
||||
OBJS = WWCharacter.o WWColorMap.o WWDisplay.o WWLCDPanel.o WWPalette.o WWScreen.o WWSprite.o WonxDisplay.o XDisplay.o bank.o comm.o disp.o text.o key.o sound.o system.o timer.o etc.o wonx.o
|
||||
OBJS = WWCharacter.o WWColorMap.o WWDisplay.o WWLCDPanel.o WWPalette.o WWScreen.o WWSprite.o WWText.o Wonx.o WonxDisplay.o WonxText.o XDisplay.o bank.o comm.o disp.o text.o key.o sound.o system.o timer.o etc.o
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
|
||||
@@ -16,7 +16,7 @@ libwonx.a : $(OBJS)
|
||||
# ranlib libwonx.a
|
||||
|
||||
.c.o : $*.c
|
||||
gcc -c $*.c -O -I$(INCLUDEDIR) -I$(XINCLUDEDIR)
|
||||
gcc -c $*.c -O -Wall -I$(INCLUDEDIR) -I$(XINCLUDEDIR)
|
||||
|
||||
clean :
|
||||
rm -f libwonx.a *.o
|
||||
|
||||
Reference in New Issue
Block a user