Mercurial > hg > orthanc
view Resources/sha1/Makefile @ 553:27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 17 Sep 2013 15:06:16 +0200 |
parents | 81b6f3013738 |
children |
line wrap: on
line source
# # Makefile # # Copyright (C) 1998, 2009 # Paul E. Jones <paulej@packetizer.com> # All Rights Reserved. # ############################################################################# # $Id: Makefile 12 2009-06-22 19:34:25Z paulej $ ############################################################################# # # Description: # This is a makefile for UNIX to build the programs sha, shacmp, and # shatest # # CC = g++ CFLAGS = -c -O2 -Wall -D_FILE_OFFSET_BITS=64 LIBS = OBJS = sha1.o all: sha shacmp shatest sha: sha.o $(OBJS) $(CC) -o $@ sha.o $(OBJS) $(LIBS) shacmp: shacmp.o $(OBJS) $(CC) -o $@ shacmp.o $(OBJS) $(LIBS) shatest: shatest.o $(OBJS) $(CC) -o $@ shatest.o $(OBJS) $(LIBS) %.o: %.cpp $(CC) $(CFLAGS) -o $@ $< clean: $(RM) *.o sha shacmp shatest