/perf/perftools

To get this branch, use:
bzr branch http://darksoft.org/webbzr/perf/perftools

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2012-11-27 01:10:56 UTC
  • Revision ID: csa@dside.dyndns.org-20121127011056-n8apsuky9x9rae7b
initial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#CC = icc
 
2
BINARIES = memeater
 
3
CFLAGS = -O2 -std=c99 
 
4
LDFLAGS =
 
5
LIBS = -lm 
 
6
 
 
7
 
 
8
all: $(BINARIES)
 
9
 
 
10
$(BINARIES):%:%.c Makefile
 
11
        $(CC) -o $@ $< $(CFLAGS) $(LIBS)
 
12
 
 
13
clean:
 
14
        rm -f $(BINARIES)