Added comments

This commit is contained in:
Justin Ethier 2016-07-30 17:10:43 -04:00
parent 6643eeb083
commit 44dd3de7ac

View file

@ -1,8 +1,15 @@
# Cyclone Scheme
# Copyright (c) 2014, Justin Ethier
# All rights reserved.
#
# Configuration options for the makefile
# install configuration
# Use these lines instead for debugging or profiling
#CFLAGS = -g
#CFLAGS = -g -pg
CFLAGS ?= -g -Wall
CC ?= cc
# Commands "baked into" cycone for invoking the C compiler
CC_PROG ?= "$(CC) ~src-file~ $(CFLAGS) -c -o ~exec-file~.o"
CC_EXEC ?= "$(CC) ~exec-file~.o ~obj-files~ -pthread -lcyclone -lck -lm $(CFLAGS) -o ~exec-file~"
CC_LIB ?= "$(CC) ~src-file~ $(CFLAGS) -c -o ~exec-file~.o"