blob: 514b53c5102fd872e7a7258b216aa256237ada2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
CC=gcc
CFLAGS=-O2 -Wall -Wextra -static
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)
|