Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kozyraki committed Nov 29, 2014
1 parent 7acfb6b commit 7a1ac25
Show file tree
Hide file tree
Showing 74 changed files with 21,197 additions and 0 deletions.
Binary file added sample_apps/.DS_Store
Binary file not shown.
Binary file added sample_apps/histogram/.DS_Store
Binary file not shown.
81 changes: 81 additions & 0 deletions sample_apps/histogram/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
#------------------------------------------------------------------------------
# Copyright (c) 2007, Stanford University
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of Stanford University nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY STANFORD UNIVERSITY ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL STANFORD UNIVERSITY BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#------------------------------------------------------------------------------


#------------------------------------------------------------------------------
# File: Makefile
#
# Note: This Makefile requires GNU make.
#------------------------------------------------------------------------------

CC = gcc

OSTYPE = $(shell uname)

ifeq ($(OSTYPE),CYGWIN_NT-5.1)
ARCH = -D_CYGWIN_
endif

ifeq ($(OSTYPE),Linux)
ARCH = -D_LINUX_
endif

ifeq ($(OSTYPE),SunOS)
ARCH = -D_SOLARIS_
endif

ifeq ($(OSTYPE),Darwin)
ARCH = -D_DARWIN_
endif

PATH_OUT = ./$(OSTYPE)/

CFLAGS = -Wall $(ARCH) -O3
LIBS = -lm -lpthread -lrt -lcpc

HIST_OBJS = hist.o
HIST_SEQ_OBJS = hist-seq.o
HIST_PTHREAD_OBJS = hist-pthread.o
COM_OBJS = MapReduceScheduler.o

PROGS = hist hist-seq hist-pthread

.PHONY: default clean

all: $(PROGS)

hist: $(COM_OBJS) $(HIST_OBJS)
$(CC) $(CFLAGS) -o $@ $(COM_OBJS) $(HIST_OBJS) $(LIBS)

hist-seq: $(HIST_SEQ_OBJS)
$(CC) $(CFLAGS) -o $@ $(HIST_SEQ_OBJS) $(LIBS)

hist-pthread: $(HIST_PTHREAD_OBJS)
$(CC) $(CFLAGS) -o $@ $(HIST_PTHREAD_OBJS) $(LIBS)

clean:
rm -f $(PROGS) *.o *.a *~ *.tmp *.bak *.log
Loading

0 comments on commit 7a1ac25

Please sign in to comment.