# Makefile for the Linux Netbus Client by noupe@efnet #hack.se

CC = gcc -Wall -O3
OBJEKTFILER = lxnetbus.o lxnbfunc.o lxnbmenu.o


all:   ${OBJEKTFILER} lxnetbus

lxnetbus: ${OBJEKTFILER}  

clean:
	rm -f *.o *~ diskdump.txt screendump.jpg

distclean:
	rm -f lxnetbus *.o *~ diskdump.txt screendump.jpg


