diff --git a/Makefile b/Makefile index 25556c1..5e95839 100644 --- a/Makefile +++ b/Makefile @@ -191,3 +191,6 @@ ifdef SDCARD else @echo "Error: No SDCARD defined." endif + +.profile: etc/root/dot.profile + cp etc/root/dot.profile .profile diff --git a/README.md b/README.md index 7c4de43..da93f7b 100644 --- a/README.md +++ b/README.md @@ -128,3 +128,9 @@ Run it: ./pic32 Configuration of simulated board is stored in file `pic32_max32.conf`. + +Build packages +============== + +apt-get install byacc libelf-dev + diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/games/.gitignore b/games/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/games/lib/.gitignore b/games/lib/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/games/lib/battle_strings b/games/lib/battle_strings new file mode 100644 index 0000000..a11dd99 Binary files /dev/null and b/games/lib/battle_strings differ diff --git a/libexec/.gitignore b/libexec/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sbin/.gitignore b/sbin/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/.gitignore b/share/man/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat1/.gitignore b/share/man/cat1/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat2/.gitignore b/share/man/cat2/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat3/.gitignore b/share/man/cat3/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat4/.gitignore b/share/man/cat4/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat5/.gitignore b/share/man/cat5/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat6/.gitignore b/share/man/cat6/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat7/.gitignore b/share/man/cat7/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/share/man/cat8/.gitignore b/share/man/cat8/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/src/cmd/picoc/Makefile b/src/cmd/picoc/Makefile index d704b7d..6716b5e 100644 --- a/src/cmd/picoc/Makefile +++ b/src/cmd/picoc/Makefile @@ -2,7 +2,7 @@ TOPSRC = $(shell cd ../../..; pwd) include $(TOPSRC)/target.mk #CC=gcc -CFLAGS+= -g -DUNIX_HOST -DVER=\"`svnversion -n`\" -DFILENAME_MAX=64 -DL_tmpnam=30 -DCLOCKS_PER_SEC=80000000 -DPATH_MAX=200 -Os -Werror +CFLAGS+= -g -DUNIX_HOST -DVER='"1.0"' -DFILENAME_MAX=64 -DL_tmpnam=30 -DCLOCKS_PER_SEC=80000000 -DPATH_MAX=200 -Os -Werror LIBS=-lm -lc TARGET = picoc