chg: cleaning out timing.

chg: makefile (piwi)
This commit is contained in:
iceman1001
2017-03-13 09:45:46 +01:00
parent 33936c2155
commit 14d6c4fc34
6 changed files with 15 additions and 35 deletions

View File

@@ -6,12 +6,12 @@ LDFLAGS =
OBJS = crypto1.o crapto1.o
HEADERS = crapto1.h
EXES = nonce2key
WINEXES = nonce2key.exe
WINEXES = $(patsubst %, %.exe, $(EXES))
all: $(OBJS) $(EXES)
%.o : %.c
$(CC) $(CFLAGS) -o $@ $<
$(CC) $(CFLAGS) -c -o $@ $<
% : %.c
$(LD) $(LDFLAGS) -o $@ $(OBJS) $<