Preliminary Syllable support.
Completely untested... git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1880 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
parent
179110bdc5
commit
48a3ccd54e
19
src/Makefile
19
src/Makefile
@ -227,6 +227,24 @@ else
|
|||||||
X11LOPT =
|
X11LOPT =
|
||||||
COPT = -W -Wall -m68020-60 -fomit-frame-pointer -std=c99 -Wdeclaration-after-statement -D__MINT__ -DNO_INLINE_MATH -O$(OPTIM) -c -I$(prefix)/include `$(prefix)/bin/libpng12-config --cflags` `$(prefix)/bin/sdl-config --cflags` $(JOYCOPT) $(LAYERCOPT) $(LUACOPT)
|
COPT = -W -Wall -m68020-60 -fomit-frame-pointer -std=c99 -Wdeclaration-after-statement -D__MINT__ -DNO_INLINE_MATH -O$(OPTIM) -c -I$(prefix)/include `$(prefix)/bin/libpng12-config --cflags` `$(prefix)/bin/sdl-config --cflags` $(JOYCOPT) $(LAYERCOPT) $(LUACOPT)
|
||||||
LOPT = -static -m68020-60 -lSDL_image `$(prefix)/bin/sdl-config --libs` -L$(prefix)/lib -ltiff -ljpeg `$(prefix)/bin/libpng12-config --libs` -lz -lm $(TTFLOPT) -lfreetype $(LUALOPT) $(LAYERLOPT)
|
LOPT = -static -m68020-60 -lSDL_image `$(prefix)/bin/sdl-config --libs` -L$(prefix)/lib -ltiff -ljpeg `$(prefix)/bin/libpng12-config --libs` -lz -lm $(TTFLOPT) -lfreetype $(LUALOPT) $(LAYERLOPT)
|
||||||
|
else
|
||||||
|
ifeq ($(PLATFORM),syllable) #10
|
||||||
|
#Syllable
|
||||||
|
DELCOMMAND = rm -rf
|
||||||
|
MKDIR = mkdir -p
|
||||||
|
RMDIR = rmdir --ignore-fail-on-non-empty
|
||||||
|
CP = cp
|
||||||
|
ZIP = zip
|
||||||
|
PLATFORMFILES = gfx2.png
|
||||||
|
LUACOPT = -I/resources/indexes/include
|
||||||
|
LUALOPT = -llua
|
||||||
|
|
||||||
|
BIN = ../bin/grafx2
|
||||||
|
COPT = -W -Wall -Wdeclaration-after-statement -std=c99 -c -g `sdl-config --cflags` -I/resources/indexes/include/SDL $(TTFCOPT) $(LUACOPT) $(JOYCOPT) $(VKEYCOPT) -O$(OPTIM)
|
||||||
|
LOPT = `sdl-config --libs` -lSDL_image $(TTFLOPT) -lpng -lz $(LUALOPT) -lm
|
||||||
|
CC = gcc
|
||||||
|
OBJDIR = ../obj/syllable
|
||||||
|
X11LOPT =
|
||||||
else
|
else
|
||||||
# Finally, the default rules that work fine for most unix/gcc systems, linux and freebsd are tested.
|
# Finally, the default rules that work fine for most unix/gcc systems, linux and freebsd are tested.
|
||||||
# Linux and FreeBSD specific (default rules)
|
# Linux and FreeBSD specific (default rules)
|
||||||
@ -320,6 +338,7 @@ else
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
### BUILD SETTINGS are set according to vars set in the platform selection,
|
### BUILD SETTINGS are set according to vars set in the platform selection,
|
||||||
### the "overridable defaults", and environment variables set before launching make
|
### the "overridable defaults", and environment variables set before launching make
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user