uni

University stuff
git clone git://git.margiolis.net/uni.git
Log | Files | Refs | README | LICENSE

Makefile (298B)


      1 TARGS = priv \
      2 	encrypt \
      3 	decrypt \
      4 	sign \
      5 	verify
      6 
      7 SCRIPTS = atoh \
      8 	  htoa
      9 
     10 CC = cc
     11 CFLAGS = -std=c99 -pedantic -Wall -Os -Iinclude
     12 LIBS = -Llib -lcrypto
     13 
     14 all:
     15 	for targ in ${TARGS} ; do \
     16 		${CC} $${targ}.c ${LIBS} -o $${targ} ; \
     17 	done
     18 	chmod +x ${SCRIPTS}
     19 
     20 clean:
     21 	rm -f ${TARGS} *.o *.core