summaryrefslogtreecommitdiff
path: root/Makefile
blob: d922d9084df7dc0dfdf1d5efbb45cbf8cd48deb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.POSIX:
.SUFFIXES:

CFLAGS = -O2 -Wall -Wextra -pedantic -D_POSIX_C_SOURCE=199309L -D_XOPEN_SOURCE
LDFLAGS = -static
LDLIBS = -lm

all: pineapple

pineapple: pineapple.c
	$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LDLIBS)

clean:
	rm -f pineapple

.PHONY: all clean