mirror of
https://github.com/ctm/executor.git
synced 2025-01-09 09:29:33 +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
|