Differences From Artifact [053afc7a8f]:
- File makerules — part of check-in [8a57f6203c] at 2019-08-16 03:00:33 on branch trunk — add android support (user: lexi, size: 663) [annotate] [blame] [check-ins using]
To Artifact [a224223f8c]:
- File makerules — part of check-in [a49d93061d] at 2019-09-06 01:02:13 on branch trunk — fix bug caused by unintuitive behavior of strncmp (user: lexi, size: 605) [annotate] [blame] [check-ins using]
17 17 post = $(if $(debug),, && strip $@) 18 18 cc-post = $(post) 19 19 sc-post = $(post) 20 20 mc-post = $(post) 21 21 22 22 os = $(shell uname -o) 23 23 24 -ifeq ($(os),Android) 25 - l-shmem = -landroid-shmem 26 -endif 27 - 28 24 %: %.c 29 25 $(cc) $< -o$@ $(cc-post) 30 26 31 27 %: %.ml 32 28 $(mc) $< -o $@ $(mc-post) 33 29 34 30 %: %.scm