summaryrefslogtreecommitdiff
path: root/src/surface/Makefile
blob: 012d9cd96f004b4000ebced2ea4e6d005afb5edc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Sources
DIR_SOURCES := surface.c able.c ram.c linux.c

ifeq ($(NSFB_SDL_AVAILABLE),yes)
  DIR_SOURCES := $(DIR_SOURCES) sdl.c
endif

ifeq ($(NSFB_XCB_AVAILABLE),yes)
  DIR_SOURCES := $(DIR_SOURCES) x.c
endif

ifeq ($(NSFB_VNC_AVAILABLE),yes)
  DIR_SOURCES := $(DIR_SOURCES) vnc.c
endif

include $(NSBUILD)/Makefile.subdir