mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 16:57:35 +02:00
Added comments
This commit is contained in:
parent
6643eeb083
commit
44dd3de7ac
1 changed files with 9 additions and 2 deletions
|
@ -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
|
CFLAGS ?= -g -Wall
|
||||||
CC ?= cc
|
CC ?= cc
|
||||||
|
# Commands "baked into" cycone for invoking the C compiler
|
||||||
CC_PROG ?= "$(CC) ~src-file~ $(CFLAGS) -c -o ~exec-file~.o"
|
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_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"
|
CC_LIB ?= "$(CC) ~src-file~ $(CFLAGS) -c -o ~exec-file~.o"
|
||||||
|
|
Loading…
Add table
Reference in a new issue