初始提交
This commit is contained in:
commit
8f3c5cf6a4
16
Makefile
Normal file
16
Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
CROSS_COMPILE ?=
|
||||||
|
CC := $(CROSS_COMPILE)gcc
|
||||||
|
STRIP := $(CROSS_COMPILE)strip
|
||||||
|
CFLAGS += -g -Wall
|
||||||
|
LIBS = -static
|
||||||
|
OBJ := sha
|
||||||
|
|
||||||
|
all: sha.o
|
||||||
|
$(CC) $(CFLAGS) -o $(OBJ) $^ $(LIBS)
|
||||||
|
.c.o:
|
||||||
|
$(CC) $(CFLAGS) -c $<
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf *.o
|
||||||
|
rm $(OBJ)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user