Changeset 7438
- Timestamp:
- Jun 8, 2006, 10:58:34 AM (20 years ago)
- Location:
- trunk/psphot
- Files:
-
- 2 edited
-
configure.ac (modified) (1 diff)
-
src/Makefile.am (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/configure.ac
r7426 r7438 65 65 dnl ------------------------------------------------------------ 66 66 67 AC_PATH_PROG([ERRORCODES], [psParseErrorCodes], [missing]) 68 if test "$ERRORCODES" = "missing" ; then 69 AC_MSG_ERROR([psParseErrorCodes is required]) 70 fi 71 67 72 PKG_CHECK_MODULES(PSLIB, pslib >= 0.9.0) 68 73 PKG_CHECK_MODULES(PSMODULE, psmodule >= 0.0.0) -
trunk/psphot/src/Makefile.am
r7385 r7438 1 1 2 lib_LTLIBRARIES = libpsphot.la 2 3 libpsphot_la_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(psphot_CFLAGS) 3 libpsphot_la_LDFLAGS = $(PSMODULE_LIBS) $(PSLIB_LIBS) 4 libpsphot_la_SOURCES = $(psphot_SOURCES) 4 # libpsphot_la_LDFLAGS = $(PSMODULE_LIBS) $(PSLIB_LIBS) 5 5 6 6 bin_PROGRAMS = psphot 7 7 psphot_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(psphot_CFLAGS) 8 8 psphot_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) 9 psphot_LDADD = libpsphot.la 9 10 10 PSLIB_DIR = `pslib-config --prefix` 11 psphot_SOURCES = \ 12 psphot.c 11 13 12 14 # psphot_CPPFLAGS = $(libpsphot_la_CPPFLAGS) … … 14 16 # psphot_LDADD = libpsphot.la 15 17 16 psphot_SOURCES = \ 17 psphot.c \ 18 libpsphot_la_SOURCES = \ 18 19 errorCodes.c \ 19 20 psphotModelGroupInit.c \ … … 48 49 psphotCleanup.c 49 50 50 noinst_HEADERS =\51 include_HEADERS = \ 51 52 psphot.h 52 53 53 54 clean-local: 54 55 -rm -f TAGS 56 55 57 # Tags for emacs 56 58 tags: … … 63 65 64 66 psphotErrorCodes.h : errorCodes.dat psphotErrorCodes.h.in 65 $( PSLIB_DIR)/bin/psParseErrorCodes --data=errorCodes.dat --outdir=. \66 psphotErrorCodes.h 67 $(ERRORCODES) --data=errorCodes.dat --outdir=. psphotErrorCodes.h 68 67 69 errorCodes.c : errorCodes.dat errorCodes.c.in psphotErrorCodes.h 68 $( PSLIB_DIR)/bin/psParseErrorCodes--data=errorCodes.dat --outdir=. errorCodes.c70 $(ERRORCODES) --data=errorCodes.dat --outdir=. errorCodes.c
Note:
See TracChangeset
for help on using the changeset viewer.
