Delete Makefile
Browse files
Makefile
DELETED
|
@@ -1,18 +0,0 @@
|
|
| 1 |
-
CC = cc
|
| 2 |
-
CFLAGS = -O2 -Wall -Wextra -fno-strict-aliasing -I.
|
| 3 |
-
LDLIBS = -lcurl -lm
|
| 4 |
-
|
| 5 |
-
# cJSON is included as source
|
| 6 |
-
OBJS = shadowclaw.o cJSON.o
|
| 7 |
-
|
| 8 |
-
shadowclaw: $(OBJS)
|
| 9 |
-
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDLIBS)
|
| 10 |
-
|
| 11 |
-
shadowclaw.o: shadowclaw.c cJSON.h
|
| 12 |
-
cJSON.o: cJSON.c cJSON.h
|
| 13 |
-
|
| 14 |
-
clean:
|
| 15 |
-
rm -f $(OBJS) shadowclaw
|
| 16 |
-
|
| 17 |
-
strip: shadowclaw
|
| 18 |
-
strip --strip-all shadowclaw
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|