This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mesa-framework-mesa-jump-layer/src/Makefile

11 lines
285 B
Makefile
Raw Normal View History

INC=-I../inc -I/opt/MESA/include -I/opt/MESA/include/MESA -I/opt/MESA/include/MESA/stream_inc
CFLAGS=-g -Wall
all:libMESA_jump_layer.so
libMESA_jump_layer.so:MESA_jump_layer.o
g++ -o $@ $^ -fPIC -shared
MESA_jump_layer.o:MESA_jump_layer.cpp
g++ -c -fPIC -o $@ $^ $(INC) $(CFLAGS)