#
# Makefile  -  makefile for rpmunpack
#
# Gero Kuhlmann   <gero@gkminix.han.de>  1998
#
#  This program is public domain software; you can do whatever you like
#  with this source, including modifying and redistributing it.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#

TARGET  = rpmunpack
CFLAGS  = -Wall -O2
LDFLAGS = -s


all:	$(TARGET)


clean:
	rm -f $(TARGET) *.o
	rm -f core

