forked from leonmavr/retrocube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (37 loc) · 1019 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
###############################################
# Definitions
###############################################
CC = gcc
EXEC = cube
SRC_DIR = src
INC_DIR = include
CFLAGS = -Wall -Wno-maybe-uninitialized -I$(INC_DIR) -O3 -std=gnu99
LDFLAGS = -lncurses -ltinfo -lm
SOURCES = $(wildcard $(SRC_DIR)/*.c) \
main.c
OBJECTS = $(SOURCES:%.c=%.o)
RM = rm -rf
###############################################
# Compilation
###############################################
all: $(EXEC)
$(EXEC): $(OBJECTS)
$(CC) $(OBJECTS) -o $(EXEC) $(LDFLAGS)
%.o: %.cpp
$(CC) $(CFLAGS) -c $^ -o $@
.PHONY: clean
clean:
$(RM) $(OBJECTS)
$(RM) $(EXEC)
###################################################
# release #
###################################################
PREFIX = /usr
.PHONY: install
install: $(EXEC)
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp $< $(DESTDIR)$(PREFIX)/bin/$(EXEC)
.PHONY: uninstall
uninstall:
$(RM) $(DESTDIR)$(PREFIX)/bin/$(EXEC)
# remove configs too if necessary