aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3fcbd91295e19bd29ada28624bead69995c0e3ef (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 user.c util.c log.c cfg.c
all:
	$(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC)
	strip -s $(PROG)
clean:
	rm -rf $(PROG)