Codebase list sidguesser / ed7105b4-4930-4b08-aef1-c1c217262dc7/main Makefile.in
ed7105b4-4930-4b08-aef1-c1c217262dc7/main

Tree @ed7105b4-4930-4b08-aef1-c1c217262dc7/main (Download .tar.gz)

Makefile.in @ed7105b4-4930-4b08-aef1-c1c217262dc7/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