Files
CS3841/Examples/concurrency/Makefile
p-w-rs 6d881b3edd stuff
2022-09-21 12:04:48 -05:00

13 lines
155 B
Makefile

CC=gcc
CFLAGS=-O0 -Wall -Wextra -g -pthread
BINS=$(patsubst %.c,%,$(wildcard *.c))
all: $(BINS)
clean:
rm -f $(BINS)
%: %.c
$(CC) $(CFLAGS) -o $@ $<