This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/utils/mnetftpc/Makefile
2018-05-27 09:42:41 +10:00

21 lines
371 B
Makefile

CC=cc
CFLAGS=-I/usr/local/include -I../../deps/
DEPS = mnetftpc.c
LIBFTP = ../../deps/ftplib-4.0-1/src/libftp.a
OBJ = mnetftpc.o
all: mnetftpc
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
$(LIBFTP):
cd ../../deps/ftplib-4.0-1/src && $(MAKE)
mnetftpc: $(OBJ) $(LIBFTP)
$(CC) -o mnetftpc $^ $(CFLAGS) -L/usr/local/lib
.PHONY: clean
clean:
rm -f $(OBJ) mnetftpc