home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 10
/
aminetcdnumber101996.iso
/
Aminet
/
misc
/
unix
/
sploiner.lha
/
source.lha
/
Makefile
< prev
next >
Wrap
Makefile
|
1995-09-26
|
374b
|
21 lines
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