This repository has been archived on 2025-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ics_cli/makefile
T
2023-08-15 21:20:50 +02:00

25 lines
295 B
Makefile

all:
gcc -Wall ./src/*.c
.PHONY: debug
debug:
gcc -Wall -g ./src/*.c
gdb a.out
.PHONY: run
run:
gcc -Wall ./src/*.c
./a.out
.PHONY: install
install: a.out
cp a.out /usr/local/bin/ics_analyzer
.PHONY: clean
clean:
rm a.out
.PHONY: uninstall
uninstall:
rm /usr/local/bin/ics_analyzer