stuff
This commit is contained in:
12
Examples/concurrency/Makefile
Normal file
12
Examples/concurrency/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
CC=gcc
|
||||
CFLAGS=-O0 -Wall -Wextra -g -pthread
|
||||
|
||||
BINS=$(patsubst %.c,%,$(wildcard *.c))
|
||||
|
||||
all: $(BINS)
|
||||
|
||||
clean:
|
||||
rm -f $(BINS)
|
||||
|
||||
%: %.c
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
Reference in New Issue
Block a user