websh/Makefile
2018-04-16 17:44:33 +02:00

14 lines
232 B
Makefile

CC = gcc
CFLAGS = -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE -D_POSIX_C_SOURCE=200809L -g -c
all: websh
websh: websh.o
$(CC) $^ -o $@
%.o: %.c
$(CC) $(CFLAGS) $^
.PHONY clean:
rm -f websh.o websh