| 1 | #Makefile for sys functions of psLib
|
|---|
| 2 | #
|
|---|
| 3 | noinst_LTLIBRARIES = libpslibsys.la
|
|---|
| 4 |
|
|---|
| 5 | libpslibsys_la_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) $(CFITSIO_CFLAGS)
|
|---|
| 6 | libpslibsys_la_SOURCES = \
|
|---|
| 7 | psAbort.c \
|
|---|
| 8 | psConfigure.c \
|
|---|
| 9 | psError.c \
|
|---|
| 10 | psErrorCodes.c \
|
|---|
| 11 | psLine.c \
|
|---|
| 12 | psLogMsg.c \
|
|---|
| 13 | psMemory.c \
|
|---|
| 14 | psSlurp.c \
|
|---|
| 15 | psString.c \
|
|---|
| 16 | psTrace.c \
|
|---|
| 17 | psType.c \
|
|---|
| 18 | strcasestr.c
|
|---|
| 19 |
|
|---|
| 20 | EXTRA_DIST = sys.i psErrorCodes.c.in psErrorCodes.h.in
|
|---|
| 21 |
|
|---|
| 22 | BUILT_SOURCES = psErrorCodes.c
|
|---|
| 23 |
|
|---|
| 24 | psErrorCodes.c: ../psErrorCodes_$(PS_LANG).dat psErrorCodes.c.in psErrorCodes.h
|
|---|
| 25 | $(top_srcdir)/utils/psParseErrorCodes --data=../psErrorCodes_$(PS_LANG).dat $@
|
|---|
| 26 |
|
|---|
| 27 | psError.h: psErrorCodes.h
|
|---|
| 28 |
|
|---|
| 29 | psErrorCodes.h: ../psErrorCodes_$(PS_LANG).dat psErrorCodes.h.in
|
|---|
| 30 | $(top_srcdir)/utils/psParseErrorCodes --data=../psErrorCodes_$(PS_LANG).dat $@
|
|---|
| 31 |
|
|---|
| 32 | pkginclude_HEADERS = \
|
|---|
| 33 | psAbort.h \
|
|---|
| 34 | psAssert.h \
|
|---|
| 35 | psConfigure.h \
|
|---|
| 36 | psError.h \
|
|---|
| 37 | psErrorCodes.h \
|
|---|
| 38 | psExit.h \
|
|---|
| 39 | psLine.h \
|
|---|
| 40 | psLogMsg.h \
|
|---|
| 41 | psMemory.h \
|
|---|
| 42 | psSlurp.h \
|
|---|
| 43 | psString.h \
|
|---|
| 44 | psTrace.h \
|
|---|
| 45 | psType.h
|
|---|
| 46 |
|
|---|
| 47 | CLEANFILES = *~ *.bb *.bbg *.da
|
|---|