mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
23 lines
418 B
Makefile
23 lines
418 B
Makefile
|
|
||
|
## Copyright (c) 2021 Thakee Nathees
|
||
|
## Licensed under: MIT License
|
||
|
|
||
|
CC = gcc
|
||
|
CFLAGS = -lm -fPIC -Wno-int-to-pointer-cast
|
||
|
INCLUDE_DIR = -I../src/include
|
||
|
SOURCES = ../cli/*.c ../src/*.c
|
||
|
|
||
|
all: debug
|
||
|
|
||
|
init:
|
||
|
mkdir -p bin/
|
||
|
|
||
|
debug: init
|
||
|
$(CC) -o bin/pocket $(SOURCES) $(INCLUDE_DIR) $(CFLAGS) -g3 -Og
|
||
|
|
||
|
release: init
|
||
|
$(CC) -o bin/pocket $(SOURCES) $(INCLUDE_DIR) $(CFLAGS) -g -O3
|
||
|
|
||
|
clean:
|
||
|
rm -rf bin/
|