Remove legacy build system
This commit is contained in:
parent
876a0e392e
commit
5100d5603f
18 changed files with 0 additions and 3285 deletions
|
|
@ -1,36 +0,0 @@
|
|||
CC = g++
|
||||
|
||||
OBJECTS = CodeGen.o Link.o
|
||||
AR=ar
|
||||
|
||||
SRCS=CodeGen.cpp Link.cpp
|
||||
|
||||
CPPFLAGS = -fPIC
|
||||
|
||||
default : all
|
||||
all : libCodeGen.a
|
||||
|
||||
libCodeGen.a : $(OBJECTS)
|
||||
$(AR) rvu $@ $(OBJECTS)
|
||||
ranlib $@
|
||||
|
||||
%.o : %.cpp
|
||||
$(CC) -c $(CPPFLAGS) $<
|
||||
|
||||
#
|
||||
# Cleanup
|
||||
#
|
||||
.PHONY : clean
|
||||
clean :
|
||||
$(RM) *.o *.a
|
||||
|
||||
depend:
|
||||
makedepend -- $(CFLAGS) -- $(SRCS)
|
||||
# DO NOT DELETE
|
||||
|
||||
CodeGen.o: ../Include/Common.h ../Include/PoolAlloc.h ../Include/ShHandle.h
|
||||
CodeGen.o: ../Public/ShaderLang.h
|
||||
CodeGen.o: ../Include/InfoSink.h
|
||||
Link.o: ../Include/Common.h ../Include/PoolAlloc.h ../Include/ShHandle.h
|
||||
Link.o: ../Public/ShaderLang.h
|
||||
Link.o: ../Include/InfoSink.h
|
||||
Loading…
Add table
Add a link
Reference in a new issue