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

31
cross.mk Normal file
View File

@@ -0,0 +1,31 @@
DESTDIR = /usr/local/retrobsd
MACHINE = mips
CC = gcc
AS = $(CC) -x assembler-with-cpp
LD = ld
AR = ar
RANLIB = ranlib
YACC = byacc
LEX = flex
SIZE = size
#OBJDUMP = objdump
OBJDUMP = sync --
INSTALL = install -m 644
INSTALLDIR = install -m 755 -d
TAGSFILE = tags
MANROFF = nroff -man -h
ELF2AOUT = cp
CFLAGS = -O -DCROSS
LDFLAGS =
LIBS =
# Add system include path
ifeq (,$(wildcard /usr/include/i386-linux-gnu))
CFLAGS += -I/usr/include
else
CFLAGS += -I/usr/include/i386-linux-gnu
endif
CFLAGS += -I$(TOPSRC)/include