From 0791852279482b81e295cd99370f817324aba1b8 Mon Sep 17 00:00:00 2001 From: "mcafee%netscape.com" Date: Mon, 26 Oct 1998 00:17:28 +0000 Subject: [PATCH] Adding Makefile for Unix --- xpfe/xpviewer/src/Makefile | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 xpfe/xpviewer/src/Makefile diff --git a/xpfe/xpviewer/src/Makefile b/xpfe/xpviewer/src/Makefile new file mode 100644 index 000000000000..084cd390309c --- /dev/null +++ b/xpfe/xpviewer/src/Makefile @@ -0,0 +1,51 @@ +#!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 = ../../.. + +include $(DEPTH)/config/config.mk + +CPPSRCS = \ + nsSetupRegistry.cpp \ + nsViewerApp.cpp \ + $(NULL) + +# These all have windows.h: what's the deal? -mcafee +# nsBrowserMain.cpp +# nsBrowserWindow.cpp +# JSConsole.cpp + +PROGRAM = xpviewer + +TARGETS = $(PROGS) + +INCLUDES = \ + -I$(DIST)/include \ + -I$(DEPTH)/dist/include \ + -I$(DEPTH)/include \ + -I$(PUBLIC)/dom \ + -I$(PUBLIC)/raptor \ + -I$(PUBLIC)/xpcom \ + $(NULL) + +include $(DEPTH)/config/rules.mk + +$(PROGS): $(OBJS) $(EX_LIBS) + @$(MAKE_OBJDIR) + $(CCC) -o $@ $(LDFLAGS) $(OBJS) $(EX_LIBS) $(OS_LIBS) -lXm -lXt -lXext -lX11 + +