Skip to content
Snippets Groups Projects
Commit f349fee1 authored by Michal 'vorner' Vaner's avatar Michal 'vorner' Vaner
Browse files

Simplify makefile

parent f59f5ed5
No related branches found
No related tags found
No related merge requests found
BIN=nethist
SRC=nethist.c
CC=gcc
FLAGS=-Wall -Wextra -pedantic -std=gnu99 -O0 -g
LIBS=
BIN:=nethist
all: $(BIN)
$(BIN): $(SRC)
$(CC) $(FLAGS) $(LIBS) -o $(BIN) $(SRC)
CFLAGS=-Wall -Wextra -pedantic -std=gnu99 -O0 -g
clean:
rm $(BIN)
rm -f $(BIN)
.PHONY: clean all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment