Fix dependencies in the JS shell. bug 388955, patch adapted from one by jorendorff, r=brendan a=NPOTB

This commit is contained in:
mrbkap@gmail.com 2008-03-02 15:10:49 -08:00
Родитель 1c98600e8a
Коммит 317e5a69b6
5 изменённых файлов: 4 добавлений и 12 удалений

Просмотреть файл

@ -340,10 +340,8 @@ TARGETS += $(OBJDIR)/jsautocfg.h $(OBJDIR)/jscpucfg \
$(OBJDIR)/jscpucfg.o
endif
#
# Hardwire dependencies on jsopcode.tbl
#
jsopcode.h jsopcode.c: jsopcode.tbl
# Automatic make dependencies files
DEPENDENCIES = $(CFILES:%.c=$(OBJDIR)/%.d)
-include $(DEPENDENCIES)

Просмотреть файл

@ -178,9 +178,6 @@ OBJDIR = $(OS_CONFIG)$(OBJDIR_TAG).OBJ
endif
VPATH = $(OBJDIR)
# Automatic make dependencies file
DEPENDENCIES = $(OBJDIR)/.md
LCJAR = js15lc30.jar
# Library name

Просмотреть файл

@ -45,7 +45,7 @@
CC = cc
CCC = g++
CFLAGS += -Wall -Wno-format
CFLAGS += -Wall -Wno-format -MMD
OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DDARWIN
RANLIB = ranlib

Просмотреть файл

@ -43,7 +43,7 @@
CC = gcc
CCC = g++
CFLAGS += -Wall -Wno-format
CFLAGS += -Wall -Wno-format -MMD
OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DHAVE_LOCALTIME_R
RANLIB = echo

Просмотреть файл

@ -184,9 +184,6 @@ clobber:
rm -rf $(OBJS) $(TARGETS) $(DEPENDENCIES)
@cd fdlibm; $(MAKE) -f Makefile.ref clobber
depend:
gcc -MM $(CFLAGS) $(LIB_CFILES)
tar:
tar cvf $(TARNAME) $(TARFILES)
gzip $(TARNAME)