IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42729


Ignore:
Timestamp:
Oct 24, 2024, 12:30:28 PM (21 months ago)
Author:
tdeboer
Message:

facilitate building of compress.mgc file for IPP-2201

Location:
trunk/ippconfig
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippconfig/Makefile.am

    r39705 r42729  
    6262ipprc.config: $(srcdir)/ipprc.config.in
    6363dvo.site: $(srcdir)/dvo.site.in
     64
     65
     66TGTDIR  = $(PSCONFDIR)/$(PSCONFIG)/etc
     67SRC     =       compress
     68TGT     =       $(TGTDIR)/compress.mgc
     69
     70install: $(TGT)
     71build:   $(MGC)
     72
     73if HAVE_LINUX
     74MES = YesLINUX
     75MGC = compress.mgc
     76else
     77MES = StillNoLINUX
     78MGC = gentoo
     79endif
     80
     81$(TGT): $(MGC)
     82        cp $(MGC) $(TGT)     
     83
     84test: $(TGT)
     85        file o60523g0045o.2132764.wrp.2688740.skycell.1566.004.pswarp.mdc
     86        file -m $(TGT) o60523g0045o.2132764.wrp.2688740.skycell.1566.004.pswarp.mdc
     87
     88prt:
     89        @echo $(MES)
  • trunk/ippconfig/configure.ac

    r39705 r42729  
    66AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2])
    77AM_MAINTAINER_MODE
     8
     9AM_CONDITIONAL([HAVE_GENTOO], [test -f /etc/gentoo-release])
     10AM_CONDITIONAL([HAVE_LINUX], [test -f /etc/os-release])
    811
    912AC_PROG_INSTALL
Note: See TracChangeset for help on using the changeset viewer.