diff options
Diffstat (limited to 'src/glx/mini')
-rw-r--r-- | src/glx/mini/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/glx/mini/Makefile b/src/glx/mini/Makefile index 84dfa4c4432..4dea619b821 100644 --- a/src/glx/mini/Makefile +++ b/src/glx/mini/Makefile @@ -18,7 +18,10 @@ C_SOURCES = \ miniglx.c \ miniglx_events.c -OBJECTS = $(C_SOURCES:.c=.o) +X86_SOURCES = $(TOP)/src/mesa/x86/glapi_x86.S + +OBJECTS = $(C_SOURCES:.c=.o) \ + $(ASM_SOURCES:.S=.o) INCLUDES = -I. $(INCLUDE_DIRS) |