summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/glslcompiler/Makefile
blob: 858457ddd40118798e13b17145f47ba2ee5233d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Makefile for stand-alone GL-SL compiler

TOP = ../../../..

include $(TOP)/configs/current


PROGRAM = glslcompiler

OBJECTS = \
	glslcompiler.o \
	../../glapi/glapi.o \
	../../glapi/glthread.o \
	../../main/dispatch.o \
	../common/driverfuncs.o \
	../../libmesa.a

INCLUDES = \
	-I$(TOP)/include \
	-I$(TOP)/include/GL/internal \
	-I$(TOP)/src/mesa \
	-I$(TOP)/src/mesa/main \
	-I$(TOP)/src/mesa/glapi \
	-I$(TOP)/src/mesa/math \
	-I$(TOP)/src/mesa/transform \
	-I$(TOP)/src/mesa/shader \
	-I$(TOP)/src/mesa/swrast \
	-I$(TOP)/src/mesa/swrast_setup \


default: $(PROGRAM)
	$(INSTALL) $(PROGRAM) $(TOP)/bin


glslcompiler: $(OBJECTS)
	$(CC) $(OBJECTS) -lm -lpthread -o $@


glslcompiler.o: glslcompiler.c
	$(CC) -c $(CFLAGS) $(INCLUDES) glslcompiler.c -o $@


clean:
	rm -f *.o *~ $(PROGRAM)