mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
Adding Makefile for Unix
This commit is contained in:
parent
86f170b29e
commit
0791852279
51
xpfe/xpviewer/src/Makefile
Normal file
51
xpfe/xpviewer/src/Makefile
Normal 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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user