Changeset 3115 for trunk/psLib/src/collections/Makefile
- Timestamp:
- Feb 2, 2005, 2:54:13 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/Makefile
r1787 r3115 1 ############################################################################### 2 ## 3 ## Makefile: collections 4 ## 5 ## $Revision: 1.31 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-09-11 00:43:54 $ 7 ## 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 ############################################################################### 10 11 # Define variable prefix to the top level project - psLib 12 # This is necessary for definition is Makefile.Globals uses prefix 13 14 ifndef prefix 15 export prefix=$(shell cd ../..;pwd) 16 endif 17 18 # Define the two targets to be built 19 20 TARGET_STATIC = libpslib.a 21 22 # Include the make global definitions for the project 23 24 include ../Makefile.Globals 25 26 # Set CFLAGS used by the implicit rule to compile .c 27 28 CFLAGS := $(CFLAGS_RELOC) -I../sysUtils -I.. 29 30 # Define the source objects 31 32 SRC_OBJS = psBitSet.o \ 33 psVector.o \ 34 psList.o \ 35 psScalar.o \ 36 psCompare.o \ 37 psArray.o \ 38 psHash.o 39 40 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 41 42 HEADERS = $(SRC_OBJS:.o=.h) 43 44 45 # Define PHONY target "all" which will make all the necessary items 46 47 all: $(TARGET_STATIC) 48 49 psCollectionsErrors.h: psCollectionsErrors.dat 50 perl ../parseErrorCodes.pl --data=$? $@ 51 52 # Rule to make static library 53 54 libpslib.a: $(OBJS) 55 # The ar option -r is to add/replace object and -s is to create 56 # a symbol table in the archive 57 $(AR) rcs ../$@ $(OBJS) 58 59 # Define PHONY target "install" which will install necessary files 60 61 install: $(TARGET_STATIC) 62 install $(HEADERS) $(includedir) 63 64 # Define PHONY target "distclean" which will cleanup the distribution 65 66 distclean: clean 67 $(RM) ../$(TARGET_STATIC) 68 69 # Define PHONY target "clean" which will cleanup the development area 70 71 clean: 72 @echo " Deleting intermediate files for 'collections'" 73 $(RM) $(OBJS) *.lint $(SRC_OBJS:.o=.i) 74 75 cleandep: 76 $(RM) $(OBJS:.o=.d) 77 78 %.lint: %.c 79 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 80 81 %.i: %.c 82 $(CC) -E $(CFLAGS) -o $@ $< 83 84 makedir/%.o: %.c 85 $(CC) -c $(CFLAGS) -o $@ $< 86 87 makedir/%.d: %.c 88 $(CC) -MM $(CFLAGS) $< > $@.tmp 89 sed 's|\($*\)\.o[ :]*|\1.o $@ : |g' $@.tmp > $@ 90 $(RM) -f $@.tmp 91 92 include $(OBJS:.o=.d) 1 # Makefile.in generated by automake 1.9.1 from Makefile.am. 2 # src/collections/Makefile. Generated from Makefile.in by configure. 3 4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 5 # 2003, 2004 Free Software Foundation, Inc. 6 # This Makefile.in is free software; the Free Software Foundation 7 # gives unlimited permission to copy and/or distribute it, 8 # with or without modifications, as long as this notice is preserved. 9 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without 12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A 13 # PARTICULAR PURPOSE. 14 15 16 17 18 SOURCES = $(libpslibcollections_la_SOURCES) 19 20 srcdir = . 21 top_srcdir = ../.. 22 23 pkgdatadir = $(datadir)/pslib 24 pkglibdir = $(libdir)/pslib 25 pkgincludedir = $(includedir)/pslib 26 top_builddir = ../.. 27 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 28 INSTALL = /usr/bin/install -c 29 install_sh_DATA = $(install_sh) -c -m 644 30 install_sh_PROGRAM = $(install_sh) -c 31 install_sh_SCRIPT = $(install_sh) -c 32 INSTALL_HEADER = $(INSTALL_DATA) 33 transform = $(program_transform_name) 34 NORMAL_INSTALL = : 35 PRE_INSTALL = : 36 POST_INSTALL = : 37 NORMAL_UNINSTALL = : 38 PRE_UNINSTALL = : 39 POST_UNINSTALL = : 40 build_triplet = x86_64-unknown-linux-gnu 41 host_triplet = x86_64-unknown-linux-gnu 42 subdir = src/collections 43 DIST_COMMON = $(pslibinclude_HEADERS) $(srcdir)/Makefile.am \ 44 $(srcdir)/Makefile.in 45 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 46 am__aclocal_m4_deps = $(top_srcdir)/configure.in 47 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 48 $(ACLOCAL_M4) 49 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 50 CONFIG_HEADER = $(top_builddir)/src/config.h 51 CONFIG_CLEAN_FILES = 52 LTLIBRARIES = $(noinst_LTLIBRARIES) 53 libpslibcollections_la_LIBADD = 54 am_libpslibcollections_la_OBJECTS = psBitSet.lo psVector.lo psList.lo \ 55 psScalar.lo psCompare.lo psArray.lo psHash.lo 56 libpslibcollections_la_OBJECTS = $(am_libpslibcollections_la_OBJECTS) 57 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src 58 depcomp = $(SHELL) $(top_srcdir)/depcomp 59 am__depfiles_maybe = depfiles 60 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 61 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 62 LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) \ 63 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ 64 $(AM_CFLAGS) $(CFLAGS) 65 CCLD = $(CC) 66 LINK = $(LIBTOOL) --mode=link --tag=CC $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ 67 $(AM_LDFLAGS) $(LDFLAGS) -o $@ 68 SOURCES = $(libpslibcollections_la_SOURCES) 69 DIST_SOURCES = $(libpslibcollections_la_SOURCES) 70 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; 71 am__vpath_adj = case $$p in \ 72 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ 73 *) f=$$p;; \ 74 esac; 75 am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; 76 am__installdirs = "$(DESTDIR)$(pslibincludedir)" 77 pslibincludeHEADERS_INSTALL = $(INSTALL_HEADER) 78 HEADERS = $(pslibinclude_HEADERS) 79 ETAGS = etags 80 CTAGS = ctags 81 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 82 ACLOCAL = ${SHELL} /home/desonia/panstarrs/psLib/missing --run aclocal-1.9 83 AMDEP_FALSE = # 84 AMDEP_TRUE = 85 AMTAR = ${SHELL} /home/desonia/panstarrs/psLib/missing --run tar 86 AR = ar 87 AUTOCONF = ${SHELL} /home/desonia/panstarrs/psLib/missing --run autoconf 88 AUTOHEADER = ${SHELL} /home/desonia/panstarrs/psLib/missing --run autoheader 89 AUTOMAKE = ${SHELL} /home/desonia/panstarrs/psLib/missing --run automake-1.9 90 AWK = gawk 91 CC = gcc 92 CCDEPMODE = depmode=gcc3 93 CFLAGS = -g -O2 -g2 -Wall -std=c99 -D_GNU_SOURCE -I/usr/include -I/usr/include/libxml2 94 CONFIG_FILE = /home/desonia/panstarrs/psLib/config/psTime.config 95 CPP = gcc -E 96 CPPFLAGS = 97 CXX = g++ 98 CXXCPP = g++ -E 99 CXXDEPMODE = depmode=gcc3 100 CXXFLAGS = -g -O2 101 CYGPATH_W = echo 102 DEFS = -DHAVE_CONFIG_H 103 DEPDIR = .deps 104 ECHO = echo 105 ECHO_C = 106 ECHO_N = -n 107 ECHO_T = 108 EGREP = grep -E 109 EXEEXT = 110 F77 = g77 111 FFLAGS = -fno-second-underscore -O -fno-f2c 112 GSL_CONFIG = /usr/bin/gsl-config 113 INSTALL_DATA = ${INSTALL} -m 644 114 INSTALL_PROGRAM = ${INSTALL} 115 INSTALL_SCRIPT = ${INSTALL} 116 INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s 117 LDFLAGS = 118 LIBOBJS = 119 LIBS = 120 LIBTOOL = $(SHELL) $(top_builddir)/libtool 121 LN_S = ln -s 122 LTLIBOBJS = 123 MAKEINFO = ${SHELL} /home/desonia/panstarrs/psLib/missing --run makeinfo 124 OBJEXT = o 125 PACKAGE = pslib 126 PACKAGE_BUGREPORT = 127 PACKAGE_NAME = 128 PACKAGE_STRING = 129 PACKAGE_TARNAME = 130 PACKAGE_VERSION = 131 PATH_SEPARATOR = : 132 PERL = /usr/bin/perl 133 PSLIB_CFLAGS = -I${prefix}/include 134 PSLIB_LIBS = -L${exec_prefix}/lib -lpslib -lcfitsio -lfftw3f -L/usr/lib64 -lgsl -lgslcblas -lm -lxml2 -lz -lpthread -lm 135 RANLIB = ranlib 136 SET_MAKE = 137 SHELL = /bin/sh 138 STRIP = strip 139 SWIG = /usr/bin/swig 140 VERSION = 1.5 141 XML_CONFIG = /usr/bin/xml2-config 142 ac_ct_AR = ar 143 ac_ct_CC = gcc 144 ac_ct_CXX = g++ 145 ac_ct_F77 = g77 146 ac_ct_RANLIB = ranlib 147 ac_ct_STRIP = strip 148 am__fastdepCC_FALSE = # 149 am__fastdepCC_TRUE = 150 am__fastdepCXX_FALSE = # 151 am__fastdepCXX_TRUE = 152 am__include = include 153 am__leading_dot = . 154 am__quote = 155 am__tar = ${AMTAR} chof - "$$tardir" 156 am__untar = ${AMTAR} xf - 157 bindir = ${exec_prefix}/bin 158 build = x86_64-unknown-linux-gnu 159 build_alias = 160 build_cpu = x86_64 161 build_os = linux-gnu 162 build_vendor = unknown 163 datadir = ${prefix}/share 164 exec_prefix = ${prefix} 165 host = x86_64-unknown-linux-gnu 166 host_alias = 167 host_cpu = x86_64 168 host_os = linux-gnu 169 host_vendor = unknown 170 includedir = ${prefix}/include 171 infodir = ${prefix}/info 172 install_sh = /home/desonia/panstarrs/psLib/install-sh 173 libdir = ${exec_prefix}/lib 174 libexecdir = ${exec_prefix}/libexec 175 localstatedir = ${prefix}/var 176 mandir = ${prefix}/man 177 mkdir_p = mkdir -p -- 178 oldincludedir = /usr/include 179 prefix = /home/desonia/panstarrs/psLib 180 program_transform_name = s,x,x, 181 sbindir = ${exec_prefix}/sbin 182 sharedstatedir = ${prefix}/com 183 sysconfdir = ${prefix}/etc 184 target_alias = 185 186 #Makefile for collections functions of psLib 187 # 188 INCLUDES = \ 189 -I$(top_srcdir)/src/astronomy \ 190 -I$(top_srcdir)/src/dataManip \ 191 -I$(top_srcdir)/src/fileUtils \ 192 -I$(top_srcdir)/src/image \ 193 -I$(top_srcdir)/src/sysUtils \ 194 $(all_includes) 195 196 noinst_LTLIBRARIES = libpslibcollections.la 197 libpslibcollections_la_SOURCES = \ 198 psBitSet.c \ 199 psVector.c \ 200 psList.c \ 201 psScalar.c \ 202 psCompare.c \ 203 psArray.c \ 204 psHash.c 205 206 BUILT_SOURCES = psCollectionsErrors.h 207 EXTRA_DIST = psCollectionsErrors.dat psCollectionsErrors.h 208 pslibincludedir = $(includedir)/pslib 209 pslibinclude_HEADERS = \ 210 psBitSet.h \ 211 psVector.h \ 212 psList.h \ 213 psScalar.h \ 214 psCompare.h \ 215 psArray.h \ 216 psHash.h 217 218 all: $(BUILT_SOURCES) 219 $(MAKE) $(AM_MAKEFLAGS) all-am 220 221 .SUFFIXES: 222 .SUFFIXES: .c .lo .o .obj 223 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 224 @for dep in $?; do \ 225 case '$(am__configure_deps)' in \ 226 *$$dep*) \ 227 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ 228 && exit 0; \ 229 exit 1;; \ 230 esac; \ 231 done; \ 232 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/collections/Makefile'; \ 233 cd $(top_srcdir) && \ 234 $(AUTOMAKE) --gnu src/collections/Makefile 235 .PRECIOUS: Makefile 236 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 237 @case '$?' in \ 238 *config.status*) \ 239 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ 240 *) \ 241 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ 242 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 243 esac; 244 245 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 246 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 247 248 $(top_srcdir)/configure: $(am__configure_deps) 249 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 250 $(ACLOCAL_M4): $(am__aclocal_m4_deps) 251 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 252 253 clean-noinstLTLIBRARIES: 254 -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) 255 @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ 256 dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ 257 test "$$dir" != "$$p" || dir=.; \ 258 echo "rm -f \"$${dir}/so_locations\""; \ 259 rm -f "$${dir}/so_locations"; \ 260 done 261 libpslibcollections.la: $(libpslibcollections_la_OBJECTS) $(libpslibcollections_la_DEPENDENCIES) 262 $(LINK) $(libpslibcollections_la_LDFLAGS) $(libpslibcollections_la_OBJECTS) $(libpslibcollections_la_LIBADD) $(LIBS) 263 264 mostlyclean-compile: 265 -rm -f *.$(OBJEXT) 266 267 distclean-compile: 268 -rm -f *.tab.c 269 270 include ./$(DEPDIR)/psArray.Plo 271 include ./$(DEPDIR)/psBitSet.Plo 272 include ./$(DEPDIR)/psCompare.Plo 273 include ./$(DEPDIR)/psHash.Plo 274 include ./$(DEPDIR)/psList.Plo 275 include ./$(DEPDIR)/psScalar.Plo 276 include ./$(DEPDIR)/psVector.Plo 277 278 .c.o: 279 if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ 280 then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi 281 # source='$<' object='$@' libtool=no \ 282 # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ 283 # $(COMPILE) -c $< 284 285 .c.obj: 286 if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ 287 then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi 288 # source='$<' object='$@' libtool=no \ 289 # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ 290 # $(COMPILE) -c `$(CYGPATH_W) '$<'` 291 292 .c.lo: 293 if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ 294 then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi 295 # source='$<' object='$@' libtool=yes \ 296 # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ 297 # $(LTCOMPILE) -c -o $@ $< 298 299 mostlyclean-libtool: 300 -rm -f *.lo 301 302 clean-libtool: 303 -rm -rf .libs _libs 304 305 distclean-libtool: 306 -rm -f libtool 307 uninstall-info-am: 308 install-pslibincludeHEADERS: $(pslibinclude_HEADERS) 309 @$(NORMAL_INSTALL) 310 test -z "$(pslibincludedir)" || $(mkdir_p) "$(DESTDIR)$(pslibincludedir)" 311 @list='$(pslibinclude_HEADERS)'; for p in $$list; do \ 312 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ 313 f=$(am__strip_dir) \ 314 echo " $(pslibincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pslibincludedir)/$$f'"; \ 315 $(pslibincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pslibincludedir)/$$f"; \ 316 done 317 318 uninstall-pslibincludeHEADERS: 319 @$(NORMAL_UNINSTALL) 320 @list='$(pslibinclude_HEADERS)'; for p in $$list; do \ 321 f=$(am__strip_dir) \ 322 echo " rm -f '$(DESTDIR)$(pslibincludedir)/$$f'"; \ 323 rm -f "$(DESTDIR)$(pslibincludedir)/$$f"; \ 324 done 325 326 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) 327 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 328 unique=`for i in $$list; do \ 329 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 330 done | \ 331 $(AWK) ' { files[$$0] = 1; } \ 332 END { for (i in files) print i; }'`; \ 333 mkid -fID $$unique 334 tags: TAGS 335 336 TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 337 $(TAGS_FILES) $(LISP) 338 tags=; \ 339 here=`pwd`; \ 340 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 341 unique=`for i in $$list; do \ 342 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 343 done | \ 344 $(AWK) ' { files[$$0] = 1; } \ 345 END { for (i in files) print i; }'`; \ 346 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 347 test -n "$$unique" || unique=$$empty_fix; \ 348 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 349 $$tags $$unique; \ 350 fi 351 ctags: CTAGS 352 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 353 $(TAGS_FILES) $(LISP) 354 tags=; \ 355 here=`pwd`; \ 356 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 357 unique=`for i in $$list; do \ 358 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 359 done | \ 360 $(AWK) ' { files[$$0] = 1; } \ 361 END { for (i in files) print i; }'`; \ 362 test -z "$(CTAGS_ARGS)$$tags$$unique" \ 363 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 364 $$tags $$unique 365 366 GTAGS: 367 here=`$(am__cd) $(top_builddir) && pwd` \ 368 && cd $(top_srcdir) \ 369 && gtags -i $(GTAGS_ARGS) $$here 370 371 distclean-tags: 372 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 373 374 distdir: $(DISTFILES) 375 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 376 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ 377 list='$(DISTFILES)'; for file in $$list; do \ 378 case $$file in \ 379 $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ 380 $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ 381 esac; \ 382 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 383 dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ 384 if test "$$dir" != "$$file" && test "$$dir" != "."; then \ 385 dir="/$$dir"; \ 386 $(mkdir_p) "$(distdir)$$dir"; \ 387 else \ 388 dir=''; \ 389 fi; \ 390 if test -d $$d/$$file; then \ 391 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 392 cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ 393 fi; \ 394 cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ 395 else \ 396 test -f $(distdir)/$$file \ 397 || cp -p $$d/$$file $(distdir)/$$file \ 398 || exit 1; \ 399 fi; \ 400 done 401 check-am: all-am 402 check: $(BUILT_SOURCES) 403 $(MAKE) $(AM_MAKEFLAGS) check-am 404 all-am: Makefile $(LTLIBRARIES) $(HEADERS) 405 installdirs: 406 for dir in "$(DESTDIR)$(pslibincludedir)"; do \ 407 test -z "$$dir" || $(mkdir_p) "$$dir"; \ 408 done 409 install: $(BUILT_SOURCES) 410 $(MAKE) $(AM_MAKEFLAGS) install-am 411 install-exec: install-exec-am 412 install-data: install-data-am 413 uninstall: uninstall-am 414 415 install-am: all-am 416 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 417 418 installcheck: installcheck-am 419 install-strip: 420 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 421 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 422 `test -z '$(STRIP)' || \ 423 echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install 424 mostlyclean-generic: 425 426 clean-generic: 427 428 distclean-generic: 429 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 430 431 maintainer-clean-generic: 432 @echo "This command is intended for maintainers to use" 433 @echo "it deletes files that may require special tools to rebuild." 434 -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) 435 clean: clean-am 436 437 clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ 438 mostlyclean-am 439 440 distclean: distclean-am 441 -rm -rf ./$(DEPDIR) 442 -rm -f Makefile 443 distclean-am: clean-am distclean-compile distclean-generic \ 444 distclean-libtool distclean-tags 445 446 dvi: dvi-am 447 448 dvi-am: 449 450 html: html-am 451 452 info: info-am 453 454 info-am: 455 456 install-data-am: install-pslibincludeHEADERS 457 458 install-exec-am: 459 460 install-info: install-info-am 461 462 install-man: 463 464 installcheck-am: 465 466 maintainer-clean: maintainer-clean-am 467 -rm -rf ./$(DEPDIR) 468 -rm -f Makefile 469 maintainer-clean-am: distclean-am maintainer-clean-generic 470 471 mostlyclean: mostlyclean-am 472 473 mostlyclean-am: mostlyclean-compile mostlyclean-generic \ 474 mostlyclean-libtool 475 476 pdf: pdf-am 477 478 pdf-am: 479 480 ps: ps-am 481 482 ps-am: 483 484 uninstall-am: uninstall-info-am uninstall-pslibincludeHEADERS 485 486 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ 487 clean-libtool clean-noinstLTLIBRARIES ctags distclean \ 488 distclean-compile distclean-generic distclean-libtool \ 489 distclean-tags distdir dvi dvi-am html html-am info info-am \ 490 install install-am install-data install-data-am install-exec \ 491 install-exec-am install-info install-info-am install-man \ 492 install-pslibincludeHEADERS install-strip installcheck \ 493 installcheck-am installdirs maintainer-clean \ 494 maintainer-clean-generic mostlyclean mostlyclean-compile \ 495 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 496 tags uninstall uninstall-am uninstall-info-am \ 497 uninstall-pslibincludeHEADERS 498 499 500 psCollectionsErrors.h:psCollectionsErrors.dat 501 perl $(top_srcdir)/src/parseErrorCodes.pl --data=$? $@ 502 # Tell versions [3.59,3.63) of GNU make to not export all variables. 503 # Otherwise a system limit (for SysV at least) may be exceeded. 504 .NOEXPORT:
Note:
See TracChangeset
for help on using the changeset viewer.
