mirror of
https://github.com/ctm/executor.git
synced 2025-01-06 19:31:44 +00:00
9 lines
149 B
Makefile
9 lines
149 B
Makefile
CFLAGS=-g -O -Wall
|
|
CPPFLAGS=-I../../src/include
|
|
|
|
custom: parse.o
|
|
$(CC) $(LDFLAGS) -o custom parse.o
|
|
|
|
install: custom
|
|
install custom /usr/local/bin
|