Avoid copying source files to compile them. r=bryner

This commit is contained in:
dbaron%fas.harvard.edu 2000-08-19 21:24:49 +00:00
parent 3d657d890c
commit 4d9bee5892
2 changed files with 2 additions and 29 deletions

View File

@ -23,7 +23,7 @@
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
VPATH = @srcdir@/..
include $(DEPTH)/config/autoconf.mk
@ -46,17 +46,3 @@ SHARED_LIBRARY_LIBS = $(DIST)/lib/libzlib_s.a
include $(topsrcdir)/config/rules.mk
DEFINES += -DSTANDALONE
export:: copysrcs
copysrcs::
cp $(srcdir)/../*.cpp .
cp $(srcdir)/../*.h .
clean::
$(RM) -f *.cpp *.h *.o *.a
clobber:: clean
clobber_all:: clean

View File

@ -23,7 +23,7 @@
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
VPATH = @srcdir@/../src
include $(DEPTH)/config/autoconf.mk
@ -55,16 +55,3 @@ endif
EXTRA_DSO_LDOPTS += $(MOZ_COMPONENT_NSPR_LIBS)
include $(topsrcdir)/config/rules.mk
export:: copysrcs
copysrcs::
cp $(srcdir)/../src/*.c .
cp $(srcdir)/../src/*.h .
clean::
$(RM) *.h *.c *.o *.a
clobber:: clean
clobber_all:: clean