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