Codebase list sidguesser / 8051650b-a599-41e8-83db-7a91c23222f1/main Makefile.in
8051650b-a599-41e8-83db-7a91c23222f1/main

Tree @8051650b-a599-41e8-83db-7a91c23222f1/main (Download .tar.gz)

Makefile.in @8051650b-a599-41e8-83db-7a91c23222f1/mainraw · history · blame

CC=@CC@
CFLAGS=-O2
GUESS_SID_OBJS=log.o SIDGuesser.o
LDFLAGS=-pthread

all: sidguess


sidguess: $(GUESS_SID_OBJS)
	$(CC) -o sidguess $(GUESS_SID_OBJS) $(LDFLAGS)

clean:
	rm -f *~ *.o sidguess sidguess.exe

distclean: clean
	rm -f Makefile config.h