Skip to content
Snippets Groups Projects
Commit 2cb504ef authored by angrave's avatar angrave
Browse files

Makefile (generic)

parent 9b08f687
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
CFLAGS=-Wall -std=gnu99 -pthread -g
CC=gcc
PROGS:=$(patsubst %.c,%,$(wildcard *.c))
all : $(PROGS)
% : %.c
$(CC) $(CFLAGS) $(CPPFLAGS) $< -o $@
clean :
rm -rf $(PROGS)
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