getting the Makefiles working on Linux again

This commit is contained in:
jband%netscape.com 1999-03-23 08:02:27 +00:00
Родитель 45f090cfcf
Коммит f087ac928e
1 изменённых файлов: 0 добавлений и 70 удалений

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

@ -1,70 +0,0 @@
#!gmake
#
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
DEPTH = ../../../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = TestXPC
CPPSRCS = \
TestXPC.cpp \
$(NULL)
include $(topsrcdir)/config/config.mk
DEFINES += -DJS_THREADSAFE -DJSFILE
LDFLAGS = \
-L$(DIST)/bin \
-l$(MOZ_LIB_JS_PREFIX)js \
-lxpcom \
-lxpconnect \
-lxpt \
-lxptinfo \
-lxptcall \
-lreg \
-l$(MOZ_LIB_UTIL_PREFIX)util \
$(NSPR_LIBS) \
$(NULL)
PROGS = $(OBJDIR)/TestXPC
TEST_FILES = testxpc.js
TARGETS= $(PROGS)
include $(topsrcdir)/config/rules.mk
INCLUDES += -I$(PUBLIC)/xpcom -I$(PUBLIC)/js -I$(PUBLIC)/xpconnect \
-I$(PUBLIC)/raptor
#$(PROGS): $(OBJS)
# @$(MAKE_OBJDIR)
# $(CC) -o $@ $(OBJS) $(LD_FLAGS) -L$(DIST)/lib $(LIBS) $(OS_LIBS)
export:: $(TARGETS)
$(INSTALL) $(PROGS) $(DIST)/bin
$(INSTALL) $(TEST_FILES) $(DIST)/bin
clobber::
rm -f $(DIST)/bin/TestXPC
rm -f $(PROGS) $(OBJS)