Skip to content
Snippets Groups Projects
Commit aa95a2b1 authored by Zhiming Deng's avatar Zhiming Deng
Browse files

Upload New File

parent 4dc9a7d4
Branches
No related tags found
No related merge requests found
Makefile 0 → 100644
.SUFFIXES:.c .o
CC=gcc
SRCS=crack.c
OBJS=$(SRCS:.c=.o)
EXEC=crack
start: $(OBJS)
$(CC) -o $(EXEC) $(OBJS)
.c.o:
$(CC) -Wall -o $@ -c $<
clean:
rm -rf $(EXEC) $(OBJS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment