First Kindle 4 PC solution
This commit is contained in:
committed by
Apprentice Alf
parent
1f968255fe
commit
049f44231c
21
skindle/Makefile
Normal file
21
skindle/Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
OBJS=skindle.o md5.o sha1.o b64.o
|
||||
|
||||
CC=gcc
|
||||
LD=gcc
|
||||
EXE=skindle
|
||||
EXTRALIBS=-lCrypt32
|
||||
|
||||
#use the following to strip your binary
|
||||
LDFLAGS=-s
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c $(CFLAGS) $(INC) $< -o $@
|
||||
|
||||
$(EXE): $(OBJS)
|
||||
$(LD) $(LDFLAGS) -o $@ $(OBJS) $(EXTRALIBS)
|
||||
|
||||
clean:
|
||||
-@rm *.o
|
||||
Reference in New Issue
Block a user