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/filepost/Makefile

16 lines
249 B
Makefile
Raw Permalink Normal View History

CC=cc
CFLAGS=-I/usr/local/include
DEPS = filepost.c
OBJ = filepost.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
filepost: $(OBJ)
$(CC) -o filepost -o $@ $^ $(CFLAGS) -L/usr/local/lib -lsqlite3
.PHONY: clean
clean:
rm -f $(OBJ) filepost