mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
With the brw_* files imported from mesa. There are still a few things in that library that needs gen4asm.h, for instance the GLuint and GLint types. The hope is that eventually libbrw can be split out in its own directory and shared. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
47 lines
769 B
Makefile
47 lines
769 B
Makefile
SUBDIRS = doc test
|
|
|
|
noinst_LTLIBRARIES = libbrw.la
|
|
|
|
bin_PROGRAMS = intel-gen4asm intel-gen4disasm
|
|
|
|
libbrw_la_SOURCES = \
|
|
brw_compat.h \
|
|
brw_context.c \
|
|
brw_context.h \
|
|
brw_disasm.c \
|
|
brw_defines.h \
|
|
brw_eu.h \
|
|
brw_reg.h \
|
|
brw_structs.h \
|
|
ralloc.c \
|
|
ralloc.h \
|
|
$(NULL)
|
|
|
|
AM_YFLAGS = -d --warnings=all
|
|
AM_CFLAGS= $(ASSEMBLER_WARN_CFLAGS)
|
|
|
|
LEX = flex -i
|
|
BUILT_SOURCES = gram.h gram.c lex.c
|
|
gram.h: gram.c
|
|
|
|
intel_gen4asm_SOURCES = \
|
|
gen4asm.h \
|
|
gram.y \
|
|
lex.l \
|
|
main.c \
|
|
$(NULL)
|
|
|
|
intel_gen4asm_LDADD = libbrw.la
|
|
|
|
intel_gen4disasm_SOURCES = disasm-main.c
|
|
intel_gen4disasm_LDADD = libbrw.la
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = intel-gen4asm.pc
|
|
|
|
MAINTAINERCLEANFILES = $(BUILT_SOURCES)
|
|
EXTRA_DIST = \
|
|
README \
|
|
TODO \
|
|
intel-gen4asm.pc.in
|