blob: 41bb049572a15e8878725e579d5b6f17e1caf4f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
TOPDIR=../../
include $(TOPDIR)Rules.mak
# Check if 'ls -sh' works or not
LSFLAGS = $(shell if ls -sh >/dev/null 2>&1; \
then echo "-sh"; else echo "-s" ; fi)
XCFLAGS = -Wall -Os -fomit-frame-pointer -fno-builtin -nostdinc \
-I$(TOPDIR)include -I/usr/include/linux
XLDFLAGS = -nostdlib -s -gc-sections
EXTRA_LIBS=$(TOPDIR)libc.a
YCFLAGS = -Wall -Os -fomit-frame-pointer
YLDFLAGS = -s --static
# Allow alternative stripping tools to be used...
ifndef $(STRIPTOOL)
STRIPTOOL = strip
endif
STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $@
TARGETS=assert assert_glibc
all: $(TARGETS)
assert: assert.c Makefile $(TOPDIR)libc.a
-@ echo "-------"
-@ echo " "
-@ echo "Compiling vs uCLibc: "
-@ echo " "
$(CC) $(XCFLAGS) -c $< -o $@.o
$(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
-./$@
-@ echo "This was supposed to core dump on test #3"
-@rm -f core
-@ echo " "
assert_glibc: assert.c Makefile $(TOPDIR)libc.a
-@ echo "-------"
-@ echo " "
-@ echo "Compiling vs GNU libc: "
-@ echo " "
$(CC) $(YCFLAGS) -c $< -o $@.o
$(CC) $(YLDFLAGS) --static $@.o -o $@
-./$@
-@ echo "This was supposed to core dump on test #3"
-@rm -f core
-@ echo " "
clean:
rm -f *.[oa] *~ core $(TARGETS)
|