Skip to content

Commit 683e32e

Browse files
author
Álvaro Jurado
committed
A better tree thinking in ports
Signed-off-by: Álvaro Jurado <elbingmiss@gmail.com>
1 parent 46b0ec8 commit 683e32e

File tree

857 files changed

+48
-298
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

857 files changed

+48
-298
lines changed

lib/Makefile

Lines changed: 0 additions & 4 deletions
This file was deleted.

lib/ap/bsd/getopt.c_NO

Lines changed: 0 additions & 61 deletions
This file was deleted.

lib/ap/bsd/rcmd.c_unused

Lines changed: 0 additions & 150 deletions
This file was deleted.

lib/ap/math/modf.c_unused

Lines changed: 0 additions & 62 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/Makefile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
include $(OS).inc
2+
3+
all: lib cmd
4+
5+
dirs:
6+
mkdir -p $(APEXLIB)
7+
mkdir -p $(APEXBIN)
8+
9+
cmd: dirs
10+
$(MAKE) -C cmd
11+
$(MAKE) -C cmd install
12+
$(MAKE) -C cmd clean
13+
14+
lib: dirs
15+
@cd ap && $(MAKE)
16+
@echo "Done!"
17+
18+
# we clone into /tmp/harvey instead of . to make sure a HARVEY path that
19+
# is out of tree will work.
20+
travis:
21+
git clone https://github.com/Harvey-OS/harvey /tmp/harvey
22+
(cd /tmp/harvey && bash ./bootstrap.sh && ./util/build sys/src/libc/libc.json)
23+
mkdir -p $(APEXLIB)
24+
@cd ap &&$(MAKE)
25+
@cd cmd && $(MAKE)
26+
@cd cmd && $(MAKE) install
27+
@echo "Done!"
File renamed without changes.

0 commit comments

Comments
 (0)