Add demo makefiles and update example master makefiles to match.

ugfx_release_2.6
inmarket 2014-02-19 00:19:38 +10:00
parent d4c2656e60
commit 6dd606fc2f
31 changed files with 165 additions and 9 deletions

View File

@ -52,9 +52,11 @@ include ${GFXLIB}/gfx.mk
include ${GFXLIB}/boards/base/Linux/board.mk
# Where is our source code - alter these for your project.
MYFILES = $(GFXLIB)/demos/modules/gdisp/basics
MYCSRC = $(MYFILES)/main.c
MYDEFS =
# Either just include the demo makefile or add your own definitions
include $(GFXLIB)/demos/modules/gdisp/basics/demo.mk
#MYFILES = my-project-directory
#MYCSRC = $(MYFILES)/main.c
#MYDEFS =
# List all user C define here, like -D_DEBUG=1
UDEFS = $(MYDEFS) $(GFXDEFS)

View File

@ -82,8 +82,11 @@ include $(GFXLIB)/boards/base/Mikromedia-STM32-M4-ILI9341/ChibiOS_Board/board.mk
include $(GFXLIB)/gfx.mk
# Where is our source code - alter these for your project.
MYFILES = $(GFXLIB)/demos/modules/gdisp/basics
MYCSRC = $(MYFILES)/main.c
# Either just include the demo makefile or add your own definitions
include $(GFXLIB)/demos/modules/gdisp/basics/demo.mk
#MYFILES = my-project-directory
#MYCSRC = $(MYFILES)/main.c
#MYDEFS =
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.

View File

@ -64,8 +64,11 @@ include $(GFXLIB)/gfx.mk
include $(GFXLIB)/boards/base/Olimex-SAM7EX256-GE8/board.mk
# Where is our source code - alter these for your project.
MYFILES = $(GFXLIB)/demos/modules/gdisp/basics
MYCSRC = $(MYFILES)/main.c
# Either just include the demo makefile or add your own definitions
include $(GFXLIB)/demos/modules/gdisp/basics/demo.mk
#MYFILES = my-project-directory
#MYCSRC = $(MYFILES)/main.c
#MYDEFS =
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.

View File

@ -76,8 +76,11 @@ else
endif
# Where is our source code - alter these for your project.
MYFILES = $(GFXLIB)/demos/modules/gdisp/basics
MYCSRC = $(MYFILES)/main.c
# Either just include the demo makefile or add your own definitions
include $(GFXLIB)/demos/modules/gdisp/basics/demo.mk
#MYFILES = my-project-directory
#MYCSRC = $(MYFILES)/main.c
#MYDEFS =
# List C source files here
SRC += ${GFXSRC} \

3
demos/3rdparty/bubbles/demo.mk vendored 100644
View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/3rdparty/bubbles
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

65
demos/3rdparty/doom/demo.mk vendored 100644
View File

@ -0,0 +1,65 @@
DEMODIR = $(GFXLIB)/demos/3rdparty/doom
GFXINC += $(DEMODIR)
GFXSRC += \
$(DEMODIR)/d_main.c \
$(DEMODIR)/i_main.c \
$(DEMODIR)/i_system.c \
$(DEMODIR)/i_sound.c \
$(DEMODIR)/i_video.c \
$(DEMODIR)/i_net.c \
$(DEMODIR)/doomdef.c \
$(DEMODIR)/doomstat.c \
$(DEMODIR)/dstrings.c \
$(DEMODIR)/tables.c \
$(DEMODIR)/f_finale.c \
$(DEMODIR)/f_wipe.c \
$(DEMODIR)/d_net.c \
$(DEMODIR)/d_items.c \
$(DEMODIR)/g_game.c \
$(DEMODIR)/m_menu.c \
$(DEMODIR)/m_misc.c \
$(DEMODIR)/m_argv.c \
$(DEMODIR)/m_bbox.c \
$(DEMODIR)/m_fixed.c \
$(DEMODIR)/m_swap.c \
$(DEMODIR)/m_cheat.c \
$(DEMODIR)/m_random.c \
$(DEMODIR)/am_map.c \
$(DEMODIR)/p_ceilng.c \
$(DEMODIR)/p_doors.c \
$(DEMODIR)/p_enemy.c \
$(DEMODIR)/p_floor.c \
$(DEMODIR)/p_inter.c \
$(DEMODIR)/p_lights.c \
$(DEMODIR)/p_map.c \
$(DEMODIR)/p_maputl.c \
$(DEMODIR)/p_plats.c \
$(DEMODIR)/p_pspr.c \
$(DEMODIR)/p_setup.c \
$(DEMODIR)/p_sight.c \
$(DEMODIR)/p_spec.c \
$(DEMODIR)/p_switch.c \
$(DEMODIR)/p_mobj.c \
$(DEMODIR)/p_telept.c \
$(DEMODIR)/p_tick.c \
$(DEMODIR)/p_saveg.c \
$(DEMODIR)/p_user.c \
$(DEMODIR)/r_bsp.c \
$(DEMODIR)/r_data.c \
$(DEMODIR)/r_draw.c \
$(DEMODIR)/r_main.c \
$(DEMODIR)/r_plane.c \
$(DEMODIR)/r_segs.c \
$(DEMODIR)/r_sky.c \
$(DEMODIR)/r_things.c \
$(DEMODIR)/w_wad.c \
$(DEMODIR)/wi_stuff.c \
$(DEMODIR)/v_video.c \
$(DEMODIR)/st_lib.c \
$(DEMODIR)/st_stuff.c \
$(DEMODIR)/hu_stuff.c \
$(DEMODIR)/hu_lib.c \
$(DEMODIR)/s_sound.c \
$(DEMODIR)/z_zone.c \
$(DEMODIR)/info.c \
$(DEMODIR)/sounds.c

View File

@ -0,0 +1,5 @@
DEMODIR = $(GFXLIB)/demos/3rdparty/notepad-2
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c \
$(DEMODIR)/notepadApp.c \
$(DEMODIR)/notepadCore.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/applications/mandelbrot
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/applications/notepad
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/benchmarks
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gadc
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c $(DEMODIR)/gwinosc.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gaudin
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c $(DEMODIR)/gwinosc.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/basics
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/circles
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/fonts
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/fonts_cyrillic
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/images
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/images_animated
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/multiple_displays
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gdisp/streaming
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gtimer
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/basic
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/button
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/checkbox
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/console
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/graph
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/list
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/progressbar
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/radio
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/slider
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

View File

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/modules/gwin/widgets
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c