Skip to content

Commit

Permalink
Adds a Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj-imaginea committed Mar 17, 2015
1 parent 9c70cfb commit 112a019
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#
# BMSML Makefile
#

CC=clang
CFLAGS=-Wall -O2
#CFLAGS+=-ansi -pedantic -std=c++11
INC=-I/usr/local/include
LIBS=-lreadline
#LIBS+=-L/usr/local/lib
OUTPUT=bmsml

grab: main.c
$(CC) $< $(LIBS) -o $(OUTPUT)
./$(OUTPUT)

0 comments on commit 112a019

Please sign in to comment.