diff options
author | default <nobody@localhost> | 2022-09-19 21:32:36 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-19 21:32:36 +0200 |
commit | 8fbe3199df77330f26053bd09a34565b838bceb2 (patch) | |
tree | 30e991cca1efe917bd9734da49489a8f391a7613 /Makefile | |
parent | b1a1717fd95884d092f8cc08587d3d87afad0dc9 (diff) |
[main.c] New file.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,7 @@ CFLAGS=-g -Wall all: snac -snac: snac.o +snac: snac.o main.o $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@ .c.o: @@ -11,5 +11,7 @@ snac: snac.o snac.o: snac.c snac.h \ xs.h xs_io.h xs_encdec.h xs_json.h xs_curl.h xs_openssl.h xs_socket.h xs_httpd.h +main.o: main.c snac.h xs.h + clean: rm -rf *.o *.core snac |