Fixed build options. Updated gitignore

This commit is contained in:
Vysheng 2014-08-12 16:29:42 +04:00
parent a92ac340aa
commit a05d1cfd4f
2 changed files with 6 additions and 6 deletions

7
.gitignore vendored
View File

@ -7,6 +7,7 @@ config.log
config.status
.idea/
nbproject/
auto.c
auto-header.h
scheme.tlo
bin/
objs/
dep/
auto/

View File

@ -25,9 +25,8 @@ COMMON_OBJECTS=${OBJ}/tools.o
OBJ_LIST=${TG_OBJECTS} ${TLC_OBJECTS} ${GENERATE_OBJECTS} ${COMMON_OBJECTS}
OBJ_C=${TLC_OBJECTS} ${GENERATE_OBJECTS} ${COMMON_OBJECTS}
DEPENDENCE_C=$(subst ${OBJ_C}/,${DEP}/,$(patsubst %.o,%.d,${OBJ_C}))
DEPENDENCE=$(subst ${OBJ_LIST}/,${DEP}/,$(patsubst %.o,%.d,${OBJ_LIST}))
DEPENDENCE_LIST=${DEPENDENCE_C} ${DEPENDENCE}
DEPENDENCE=$(subst ${OBJ}/,${DEP}/,$(patsubst %.o,%.d,${OBJ_LIST}))
DEPENDENCE_LIST=${DEPENDENCE}
INCLUDE=-I. -I${srcdir}
CC=@CC@