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