aboutsummaryrefslogtreecommitdiff
path: root/Makefile.solaris
blob: 7660669ae05d72d6f504efccbdc5137192f7f8be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CC=gcc
CFLAGS=-O2 -Wextra -Wall -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)