Initial Import from SVN

This commit is contained in:
Matt Jenkins
2014-04-09 14:27:18 +01:00
parent 8976e834c4
commit 895f96d2f7
3153 changed files with 748589 additions and 0 deletions

18
tools/elf2aout/Makefile Normal file
View 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)