diff options
author | Arkadiusz Hiler <arek@hiler.eu> | 2021-03-25 20:59:15 +0200 |
---|---|---|
committer | Arkadiusz Hiler <arek@hiler.eu> | 2021-04-06 23:50:54 +0300 |
commit | fae783adafb5face387d2df7a983de5c1d752b45 (patch) | |
tree | 4aed01b354145c44cbe7c5a5429abade1117920d /overlay | |
parent | d6f93088378e2e00750410bfc91d43b73318484e (diff) |
Get rid of GNU Autotools
Autotools have been deprecated in favor of Meson since early 2019.
Signed-off-by: Arkadiusz Hiler <arek@hiler.eu>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: Petri Latvala <petri.latvala@intel.com>
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/Makefile.am | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/overlay/Makefile.am b/overlay/Makefile.am deleted file mode 100644 index eeeddbba4..000000000 --- a/overlay/Makefile.am +++ /dev/null @@ -1,70 +0,0 @@ -if BUILD_OVERLAY -bin_PROGRAMS = intel-gpu-overlay - -BUILT_SOURCES = tracepoint_format.h -endif - -tracepoint_format.h: tracepoint_format.leg - $(LEG) -o $@ $< - -AM_CPPFLAGS = -I. -I$(top_srcdir)/include/drm-uapi \ - -I$(top_srcdir)/lib/stubs/syscalls -AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(CWARNFLAGS) \ - $(CAIRO_CFLAGS) $(OVERLAY_CFLAGS) $(WERROR_CFLAGS) -I$(srcdir)/../lib -LDADD = $(DRM_LIBS) $(PCIACCESS_LIBS) $(CAIRO_LIBS) $(OVERLAY_LIBS) $(top_builddir)/lib/libigt_perf.la - -intel_gpu_overlay_SOURCES = \ - chart.h \ - chart.c \ - config.c \ - cpu-top.h \ - cpu-top.c \ - debugfs.h \ - debugfs.c \ - gem-interrupts.h \ - gem-interrupts.c \ - gem-objects.h \ - gem-objects.c \ - gpu-top.h \ - gpu-top.c \ - gpu-perf.h \ - gpu-perf.c \ - gpu-freq.h \ - gpu-freq.c \ - overlay.h \ - overlay.c \ - power.h \ - power.c \ - rc6.h \ - rc6.c \ - $(NULL) - -if BUILD_OVERLAY_XLIB -both_x11_sources = x11/position.c x11/position.h -AM_CFLAGS += $(OVERLAY_XLIB_CFLAGS) $(XRANDR_CFLAGS) -LDADD += $(OVERLAY_XLIB_LIBS) $(XRANDR_LIBS) -intel_gpu_overlay_SOURCES += \ - x11/x11-window.c \ - $(NULL) -endif - -if BUILD_OVERLAY_XVLIB -both_x11_sources = x11/position.c -AM_CFLAGS += $(OVERLAY_XVLIB_CFLAGS) $(XRANDR_CFLAGS) -LDADD += $(OVERLAY_XVLIB_LIBS) $(XRANDR_LIBS) -intel_gpu_overlay_SOURCES += \ - x11/dri2.c \ - x11/dri2.h \ - x11/rgb2yuv.c \ - x11/rgb2yuv.h \ - x11/x11-overlay.c \ - $(NULL) -endif - -intel_gpu_overlay_SOURCES += \ - kms/kms-overlay.c \ - $(NULL) - -intel_gpu_overlay_SOURCES += $(both_x11_sources) - -intel_gpu_overlay_LDADD = $(LDADD) -lrt -lm |