aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3267228cf9aaf7ff57f14c56f94a10f409626403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CC=gcc
CFLAGS=-O2 -Wall -Wextra
LDFLAGS=
PROG="duser"
SRC=duser.c duser.h user.c util.c log.c cfg.c
all:
	$(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC)
	strip -s $(PROG)
clean:
	rm -rf $(PROG)