Adding Makefile for Unix

This commit is contained in:
mcafee%netscape.com 1998-10-26 00:17:28 +00:00
parent 86f170b29e
commit 0791852279

View File

@ -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