tconfig.mk - coffin - secure lan file storage on a device
 (HTM) git clone git://parazyd.org/coffin.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       tconfig.mk (389B)
       ---
            1 # coffin
            2 # see LICENSE file for copyright and license details
            3 
            4 VERSION=0.4
            5 
            6 # remove a feature to disable it
            7 # available features: webdav, ssh
            8 FEATURES = webdav
            9 #FEATURES = webdav ssh
           10 
           11 # customize below to fit your system
           12 PREFIX = /usr/local
           13 MANPREFIX = ${PREFIX}/share/man
           14 
           15 # flags
           16 CFLAGS += -g -std=c99 -Os -fPIC -fPIE
           17 LDLIBS = -lgcrypt
           18 LDFLAGS += -g -pie
           19 
           20 # compiler and linker
           21 CC = cc