UNIX build rules, from my windows box so untested

This commit is contained in:
jgellman%netscape.com 1998-10-22 22:19:42 +00:00
Родитель f6dfb8a468
Коммит b643c9302f
3 изменённых файлов: 83 добавлений и 3 удалений

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

@ -1,9 +1,7 @@
#! gmake
DEPTH = ../..
DEPTH = ..
DIRS = include src
INCLUDE = $(INCLUDE) -I$(DEPTH)/modules/libimg/public
include $(DEPTH)/config/rules.mk

36
rdf/include/Makefile Normal file
Просмотреть файл

@ -0,0 +1,36 @@
#!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.
#
#
#
MODULE = rdf
DEPTH = ../..
EXPORTS = \
rdf.h \
htrdf.h \
vocab.h \
jsec2rdf.h \
nsIRDFService.h \
nsIRDFDataSource.h \
nsIRDFDataBase.h \
nsIRDFCursor.h \
nsIRDFObserver.h \
$(NULL)
include $(DEPTH)/config/rules.mk

46
rdf/src/Makefile Normal file
Просмотреть файл

@ -0,0 +1,46 @@
#!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 = ../..
MODULE = rdf
LIBRARY_NAME = rdf
REQUIRES = nspr xpcom netlib raptor
CSRCS = \
vocab.c \
core.c \
remstore.c \
utils.c \
rdfparse.c \
bmk2mcf.c \
rdfht.c \
columns.c \
ht.c \
$(NULL)
include $(DEPTH)/config/config.mk
TARGET = $(LIBRARY)
include $(DEPTH)/config/rules.mk