Skip to content
Snippets Groups Projects
Commit 1d09b6ac authored by ChouTatsumi's avatar ChouTatsumi
Browse files

test Makefile again

parent 24dc6c53
No related branches found
No related tags found
No related merge requests found
CC = gcc
CFLAGS = -std=c99 -O3 -Wall -Wpedantic
# EXE = crack
# CFILE = crack.c
EXE = crack
CFILE = crack.c
# all: $(EXE)
all: $(EXE)
# $(EXE): $(CFILE)
# $(CC) $(CFLAGS) -o $(EXE) $<
$(EXE): $(CFILE)
$(CC) $(CFLAGS) -o $(EXE) $<
%: %.c
$(CC) $(CFLAGS) -o $@ $<
# %: %.c
# $(CC) $(CFLAGS) -o $@ $<
# clean:
# rm $(EXE)
clean:
rm $(EXE)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment