14 lines
177 B
Makefile
Executable File
14 lines
177 B
Makefile
Executable File
CFLAGS = -Wall -std=gnu99
|
|
|
|
EXECUTABLES = demo_dup2 \
|
|
demo_pipe \
|
|
demo_pipe_fork
|
|
|
|
|
|
|
|
all : ${EXECUTABLES}
|
|
|
|
clean :
|
|
@rm -f core *.o *.out *~
|
|
@rm -f ${EXECUTABLES}
|