~ubuntu-branches/debian/jessie/python-posix-ipc/jessie

« back to all changes in this revision

Viewing changes to demo/make_all.sh

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-04-05 23:52:32 UTC
  • Revision ID: package-import@ubuntu.com-20140405235232-8exuqr3hqajg0x3k
Tags: upstream-0.9.8
ImportĀ upstreamĀ versionĀ 0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env bash
 
2
 
 
3
# Linker opts is blank for OS X, FreeBSD and OpenSolaris
 
4
#LINKER_OPTIONS=""
 
5
 
 
6
# Must link with realtime libs for Linux
 
7
LINKER_OPTIONS="-lrt"
 
8
 
 
9
gcc -Wall -c -o md5.o md5.c
 
10
gcc -Wall -c -o utils.o utils.c
 
11
gcc -Wall -L. $LINKER_OPTIONS md5.o utils.o -o premise premise.c
 
12
gcc -Wall -L. $LINKER_OPTIONS md5.o utils.o -o conclusion conclusion.c