glsl2: Add and use new variable mode ir_var_temporary
[mesa/nouveau-pmpeg.git] / src / gallium / Makefile.template
blob1ba0724949a71dd7aed1a5be758e676f881ae65e
1 # src/gallium/Makefile.template
3 # Template makefile for gallium libraries.
5 # Usage:
6 #   The minimum that the including makefile needs to define
7 #   is TOP, LIBNAME and one of of the *_SOURCES.
9 # Optional defines:
10 #   LIBRARY_INCLUDES are appended to the list of includes directories.
11 #   LIBRARY_DEFINES is not used for makedepend, but for compilation.
13 ### Basic defines ###
15 OBJECTS = $(C_SOURCES:.c=.o) \
16         $(CPP_SOURCES:.cpp=.o) \
17         $(ASM_SOURCES:.S=.o)
19 INCLUDES = \
20         -I. \
21         -I$(TOP)/src/gallium/include \
22         -I$(TOP)/src/gallium/auxiliary \
23         -I$(TOP)/src/gallium/drivers \
24         $(LIBRARY_INCLUDES)
27 ##### TARGETS #####
29 default: depend lib$(LIBNAME).a $(PROGS)
31 lib$(LIBNAME).a: $(OBJECTS) $(EXTRA_OBJECTS) Makefile $(TOP)/src/gallium/Makefile.template
32         $(MKLIB) -o $(LIBNAME) -static $(OBJECTS) $(EXTRA_OBJECTS)
34 depend: $(C_SOURCES) $(CPP_SOURCES) $(ASM_SOURCES) $(SYMLINKS) $(GENERATED_SOURCES)
35         rm -f depend
36         touch depend
37         $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(C_SOURCES) $(CPP_SOURCES) $(ASM_SOURCES) $(GENERATED_SOURCES) 2> /dev/null
39 $(PROGS): % : %.o
40         $(LD) $(LDFLAGS) $(filter %.o,$^) -o $@ -Wl,--start-group  $(LIBS) -Wl,--end-group
42 # Emacs tags
43 tags:
44         etags `find . -name \*.[ch]` `find $(TOP)/src/gallium/include -name \*.h`
46 # Remove .o and backup files
47 clean:
48         rm -f $(OBJECTS) $(GENERATED_SOURCES) $(PROGS) lib$(LIBNAME).a depend depend.bak
50 # Dummy target
51 install:
52         @echo -n ""
54 ##### RULES #####
56 %.s: %.c
57         $(CC) -S $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
59 %.o: %.c
60         $(CC) -c $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
62 %.o: %.cpp
63         $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(LIBRARY_DEFINES) $< -o $@
65 %.o: %.S
66         $(CC) -c $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES)  $< -o $@
69 sinclude depend