Initial Import from SVN
This commit is contained in:
18
tools/elf2aout/Makefile
Normal file
18
tools/elf2aout/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
CC = gcc -g
|
||||
CFLAGS = -O -Wall
|
||||
DESTDIR = /usr/local
|
||||
OBJS = elf2aout.o
|
||||
PROG = elf2aout
|
||||
|
||||
# For Mac OS X
|
||||
#LIBS = -largp
|
||||
|
||||
all: $(PROG)
|
||||
|
||||
install: $(PROG)
|
||||
install -s $(PROG) ${DESTDIR}/bin/$(PROG)
|
||||
clean:
|
||||
rm -f *~ *.o *.lst *.dis $(PROG)
|
||||
|
||||
$(PROG): $(OBJS)
|
||||
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
Reference in New Issue
Block a user