Codebase list sidguesser / c9c32aec-f0b7-4079-a4a9-e4e0bd0388e1/main Makefile.in
c9c32aec-f0b7-4079-a4a9-e4e0bd0388e1/main

Tree @c9c32aec-f0b7-4079-a4a9-e4e0bd0388e1/main (Download .tar.gz)

Makefile.in @c9c32aec-f0b7-4079-a4a9-e4e0bd0388e1/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