CC = gcc

CFLAGS		= $(OPTIMIZE) #-Wall -ansi -pedantic

OPTIMIZE        = -O2 # -g
STRIP		= -Xlinker -s 
LOADLIBES	= #-noixemul # for Amiga - the ixemul.library is faulty

OBJS		= sploiner.o join.o repair.o \
		  split.o usage.o getbuff.o getopt.o


sploiner:		$(OBJS)
		$(CC) $(LOADLIBES) $(OBJS) $(STRIP) -o sploiner

usage.o: common.h

clean:		
		rm -f $(OBJS) sploiner

