mirror of
https://github.com/monero-project/monero.git
synced 2025-01-28 18:56:31 +02:00
15 lines
301 B
Makefile
15 lines
301 B
Makefile
PROG = json_rpc_server
|
|
SOURCES = $(PROG).c ../../net_skeleton.c
|
|
CFLAGS = -W -Wall -I../.. -pthread $(CFLAGS_EXTRA)
|
|
|
|
all: $(PROG)
|
|
|
|
$(PROG): $(SOURCES)
|
|
$(CC) $(SOURCES) -o $@ $(CFLAGS)
|
|
|
|
$(PROG).exe: $(SOURCES)
|
|
cl $(SOURCES) /I../.. /MD /Fe$@
|
|
|
|
clean:
|
|
rm -rf *.gc* *.dSYM *.exe *.obj *.o a.out $(PROG)
|