mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-08 16:03:21 +00:00
Bugzilla bug #83811: added a new implicit rule to build BUILT_CSRCS
because VPATH or vpath doesn't search in a directory that doesn't exist at the beginning of a make invocation even if it is created by the make invocation. Modified files: coreconf/rules.mk, nss/lib/fortcrypt/swfort/manifest.mn
This commit is contained in:
parent
6bfd47f3e1
commit
3d8ad4fec1
@ -413,6 +413,13 @@ else
|
||||
$(CC) -o $@ -c $(CFLAGS) $<
|
||||
endif
|
||||
|
||||
$(PROG_PREFIX)%$(OBJ_SUFFIX): %.c
|
||||
ifdef USE_NT_C_SYNTAX
|
||||
$(CC) -Fo$@ -c $(CFLAGS) $(subst /,\\,$<)
|
||||
else
|
||||
$(CC) -o $@ -c $(CFLAGS) $<
|
||||
endif
|
||||
|
||||
ifneq ($(OS_ARCH), WINNT)
|
||||
$(OBJDIR)/$(PROG_PREFIX)%$(OBJ_SUFFIX): %.s
|
||||
@$(MAKE_OBJDIR)
|
||||
|
@ -46,9 +46,6 @@ CSRCS = swfalg.c \
|
||||
$(NULL)
|
||||
DIRS = pkcs11
|
||||
|
||||
VPATH = $(OBJDIR)
|
||||
|
||||
|
||||
EXPORTS = swfort.h swfortt.h
|
||||
PRIVATE_EXPORTS = swforti.h swfortti.h
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user