Makefile.in (889B)
1 # 2 # This Source Code Form is subject to the terms of the Mozilla Public 3 # License, v. 2.0. If a copy of the MPL was not distributed with this 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 6 #! gmake 7 8 MOD_DEPTH = ../../.. 9 topsrcdir = @top_srcdir@ 10 srcdir = @srcdir@ 11 VPATH = @srcdir@ 12 13 include $(MOD_DEPTH)/config/autoconf.mk 14 15 include $(topsrcdir)/config/config.mk 16 17 CSRCS = \ 18 prfdcach.c \ 19 prmwait.c \ 20 priometh.c \ 21 pripv6.c \ 22 prmapopt.c \ 23 prlayer.c \ 24 prlog.c \ 25 prmmap.c \ 26 prpolevt.c \ 27 prprf.c \ 28 prscanf.c \ 29 prstdio.c \ 30 $(NULL) 31 32 ifndef USE_PTHREADS 33 CSRCS += \ 34 prdir.c \ 35 prfile.c \ 36 prio.c \ 37 prsocket.c \ 38 $(NULL) 39 endif 40 41 TARGETS = $(OBJS) 42 43 INCLUDES = -I$(dist_includedir) -I$(topsrcdir)/pr/include -I$(topsrcdir)/pr/include/private 44 45 DEFINES += -D_NSPR_BUILD_ 46 47 include $(topsrcdir)/config/rules.mk 48 49 export:: $(TARGETS)