Skip to content
Snippets Groups Projects
Commit 24dc6c53 authored by ChouTatsumi's avatar ChouTatsumi
Browse files

test makefile

parent ce476f03
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
CC = gcc
CFLAGS = -std=c99 -O3 -Wall -Wpedantic
# EXE = crack
# CFILE = crack.c
# all: $(EXE)
# $(EXE): $(CFILE)
# $(CC) $(CFLAGS) -o $(EXE) $<
%: %.c
$(CC) $(CFLAGS) -o $@ $<
# clean:
# rm $(EXE)
crack.c 0 → 100644
// Header files
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// constants
#define PWD4_FILENAME "pwd4sha256"
#define PWD6_FILENAME "pwd6sha256"
// methods reference
int main(int argc, char** argv) {
printf("test Makefile\n");
return 0;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment