#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file copyright in the debian subdirectory of this archive
# for more details.
#
# Copyright (C) 2001 by Gerhard Tonn and Stefan Gybas
#

CC := gcc
CFLAGS := -Wall -Werror -pipe -O2

all: netsetupcalc login changrep

netsetupcalc: netsetupcalc.c
	$(CC) $(CFLAGS) -o $@ $^

login: login.c
	$(CC) $(CFLAGS) -o $@ $^

changrep: changrep.c
	$(CC) $(CFLAGS) -o $@ $^

s390extras: all

clean:
	rm -f netsetupcalc login changrep

.PHONY: s390extras clean
