Codebase list sidguesser / 7048039 Makefile
7048039

Tree @7048039 (Download .tar.gz)

Makefile @7048039raw · history · blame

CC=gcc
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