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

13 lines
151 B
Makefile

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