mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Build game_banner.o and editor_banner.o with -Wno-pointer-sign.
git-svn-id: https://svn.eduke32.com/eduke32@1765 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
8da4e5cc58
commit
3da48fe31a
1 changed files with 6 additions and 0 deletions
|
@ -280,7 +280,13 @@ $(OBJ)/%.$o: $(RSRC)/%.c
|
||||||
if $(CC) $(CFLAGS) $(OURCFLAGS) -c $< -o $@; then $(COMPILE_OK); else $(COMPILE_FAILED); fi
|
if $(CC) $(CFLAGS) $(OURCFLAGS) -c $< -o $@; then $(COMPILE_OK); else $(COMPILE_FAILED); fi
|
||||||
|
|
||||||
$(OBJ)/game_banner.$o: $(RSRC)/game_banner.c
|
$(OBJ)/game_banner.$o: $(RSRC)/game_banner.c
|
||||||
|
$(COMPILE_STATUS)
|
||||||
|
if $(CC) $(CFLAGS) $(OURCFLAGS) -Wno-pointer-sign -c $< -o $@; then $(COMPILE_OK); else $(COMPILE_FAILED); fi
|
||||||
|
|
||||||
$(OBJ)/editor_banner.$o: $(RSRC)/editor_banner.c
|
$(OBJ)/editor_banner.$o: $(RSRC)/editor_banner.c
|
||||||
|
$(COMPILE_STATUS)
|
||||||
|
if $(CC) $(CFLAGS) $(OURCFLAGS) -Wno-pointer-sign -c $< -o $@; then $(COMPILE_OK); else $(COMPILE_FAILED); fi
|
||||||
|
|
||||||
$(RSRC)/game_banner.c: $(RSRC)/game.bmp
|
$(RSRC)/game_banner.c: $(RSRC)/game.bmp
|
||||||
echo "#include <gdk-pixbuf/gdk-pixdata.h>" > $@
|
echo "#include <gdk-pixbuf/gdk-pixdata.h>" > $@
|
||||||
gdk-pixbuf-csource --extern --struct --raw --name=startbanner_pixdata $^ | sed 's/load_inc//' >> $@
|
gdk-pixbuf-csource --extern --struct --raw --name=startbanner_pixdata $^ | sed 's/load_inc//' >> $@
|
||||||
|
|
Loading…
Reference in a new issue