Changeset 7504
- Timestamp:
- Jun 9, 2006, 6:23:49 PM (20 years ago)
- Location:
- trunk/psphot
- Files:
-
- 3 added
- 2 deleted
- 3 edited
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
psphot.pc.in (added)
-
src/Makefile.am (modified) (4 diffs)
-
src/errorCodes.c.in (deleted)
-
src/errorCodes.dat (deleted)
-
src/psphotErrorCodes.c.in (added)
-
src/psphotErrorCodes.dat (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/Makefile.am
r6140 r7504 3 3 CLEANFILES = *.pyc *~ core core.* 4 4 5 EXTRA_DIST = autogen.sh 5 pkgconfigdir = $(libdir)/pkgconfig 6 pkgconfig_DATA= psphot.pc 7 8 EXTRA_DIST = \ 9 psphot.pc.in \ 10 autogen.sh -
trunk/psphot/configure.ac
r7440 r7504 42 42 43 43 dnl Set CFLAGS for build 44 CFLAGS="${CFLAGS}" 45 psphot_CFLAGS="-Wall -Werror -std=c99" 46 AC_SUBST([psphot_CFLAGS]) 44 CFLAGS="${CFLAGS} -Wall -Werror -std=c99" 45 46 AC_SUBST([PSPHOT_CFLAGS]) 47 AC_SUBST([PSPHOT_LIBS]) 47 48 48 49 AC_CONFIG_FILES([ 49 50 Makefile 50 51 src/Makefile 52 psphot.pc 51 53 ]) 52 54 -
trunk/psphot/src/Makefile.am
r7438 r7504 1 1 2 2 lib_LTLIBRARIES = libpsphot.la 3 libpsphot_la_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $( psphot_CFLAGS)3 libpsphot_la_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PSPHOT_CFLAGS) 4 4 # libpsphot_la_LDFLAGS = $(PSMODULE_LIBS) $(PSLIB_LIBS) 5 5 6 6 bin_PROGRAMS = psphot 7 psphot_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $( psphot_CFLAGS)7 psphot_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PSPHOT_CFLAGS) 8 8 psphot_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) 9 9 psphot_LDADD = libpsphot.la … … 17 17 18 18 libpsphot_la_SOURCES = \ 19 errorCodes.c\19 psphotErrorCodes.c \ 20 20 psphotModelGroupInit.c \ 21 21 psphotArguments.c \ … … 50 50 51 51 include_HEADERS = \ 52 psphot.h 52 psphot.h \ 53 psphotErrorCodes.h 53 54 54 55 clean-local: … … 61 62 # Error codes. 62 63 # 63 BUILT_SOURCES = psphotErrorCodes.h errorCodes.c64 CLEANFILES = psphotErrorCodes.h errorCodes.c64 BUILT_SOURCES = psphotErrorCodes.h psphotErrorCodes.c 65 CLEANFILES = psphotErrorCodes.h psphotErrorCodes.c 65 66 66 psphotErrorCodes.h : errorCodes.dat psphotErrorCodes.h.in67 $(ERRORCODES) --data= errorCodes.dat --outdir=. psphotErrorCodes.h67 psphotErrorCodes.h : psphotErrorCodes.dat psphotErrorCodes.h.in 68 $(ERRORCODES) --data=psphotErrorCodes.dat --outdir=. psphotErrorCodes.h 68 69 69 errorCodes.c : errorCodes.dat errorCodes.c.in psphotErrorCodes.h70 $(ERRORCODES) --data= errorCodes.dat --outdir=. errorCodes.c70 psphotErrorCodes.c : psphotErrorCodes.dat psphotErrorCodes.c.in psphotErrorCodes.h 71 $(ERRORCODES) --data=psphotErrorCodes.dat --outdir=. psphotErrorCodes.c
Note:
See TracChangeset
for help on using the changeset viewer.
