File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 43
43
44
44
- name : Create Makefile for testing
45
45
run : |
46
- echo 'SRCS= $(shell find . -type f -name "*.c")
47
- INCLUDES= $(shell find . -type f -name "*.h")
48
- OBJS= $(SRCS:.c=.o)
49
- CC= cc
50
- CFLAGS= -Wall -Wextra -Werror
51
- NAME= uniq_name_][
52
- all: $(NAME)
53
- $(NAME): $(OBJS)
54
- \t$(CC) $(OBJS) -o $(NAME)
55
- %.o: %.c $(INCLUDES)
56
- \t$(CC) $(CFLAGS) -c $< -o $@' > Makefile
46
+ echo 'SRCS= $(shell find . -type f -name "*.c")\nINCLUDES= $(shell find . -type f -name "*.h")\nOBJS= $(SRCS:.c=.o)\nCC= cc\nCFLAGS= -Wall -Wextra -Werror\nNAME= uniq_name_][\nall: $(NAME)\n$(NAME): $(OBJS)\n\t$(CC) $(OBJS) -o $(NAME)\n%.o: %.c $(INCLUDES)\n\t$(CC) $(CFLAGS) -c $< -o $@' > Makefile
57
47
- name : Run Services
58
48
run : |
59
49
make
You can’t perform that action at this time.
0 commit comments