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

52 lines
1.0 KiB
Makefile
Raw Normal View History

OS := $(shell uname -s)
ifeq ($(OS), FreeBSD)
CC=cc
CFLAGS=-I/usr/local/include
2017-10-19 21:27:58 +00:00
LDFLAGS=-L/usr/local/lib -lsqlite3 -lncurses
endif
2017-10-18 07:18:28 +00:00
ifeq ($(OS), DragonFly)
CC=cc
CFLAGS=-I/usr/local/include -I/usr/local/include/ncurses
2017-10-19 21:27:58 +00:00
LDFLAGS=-L/usr/local/lib -lsqlite3 -lncurses
2017-10-18 07:18:28 +00:00
endif
ifeq ($(OS), NetBSD)
CC=cc
CFLAGS=-I/usr/pkg/include
2017-10-19 21:27:58 +00:00
LDFLAGS=-R/usr/pkg/lib -L/usr/pkg/lib -lsqlite3 -lncurses
endif
2018-01-19 07:13:06 +00:00
ifeq ($(OS), OpenBSD)
CC=cc
CFLAGS=-I/usr/local/include
LDFLAGS=-L/usr/local/lib -lsqlite3 -lncurses
endif
ifeq ($(OS), Linux)
CC=gcc
CFLAGS=
2017-10-19 21:27:58 +00:00
LDFLAGS=-lsqlite3 -lncurses
endif
ifeq ($(OS), Darwin)
CC=cc
CFLAGS=
2017-10-19 21:27:58 +00:00
LDFLAGS=-lsqlite3 -lncurses
endif
ifeq ($(OS), SunOS)
CC=gcc
CFLAGS=
LDFLAGS=-lsqlite3 -lcurses
endif
2016-08-08 04:25:10 +00:00
DEPS = fileapprove.c
OBJ = fileapprove.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) -I../../deps/cdk-5.0-20161210/include/
2016-08-08 04:25:10 +00:00
fileapprove: $(OBJ)
2017-10-19 21:27:58 +00:00
$(CC) -o fileapprove -o $@ $^ ../../deps/cdk-5.0-20161210/libcdk.a $(CFLAGS) $(LDFLAGS)
2016-08-08 04:25:10 +00:00
.PHONY: clean
clean:
rm -f $(OBJ) fileapprove