fx/Makefile

11 lines
135 B
Makefile
Raw Permalink Normal View History

2022-10-16 09:37:29 -03:00
INSTALL_DIR ?= /usr/local/bin
all:
cc *.c -o fx -Wall
install:
cc *.c -o $(INSTALL_DIR)/fx -Wall
uninstall:
rm $(INSTALL_DIR)/fx