blob: 9b7ab04789dac1b47e383c257c65db39b1c3d738 (
plain) (
blame)
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
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = test
VPATH = .:$(SRCDIR)/$(SUBDIR)
include $(BUILDDIR)/config.mk
MERGE_OBJECTS =
PROGS = testrandom
all: $(PROGS)
testrandom.o: testrandom.c
$(CC_FOR_BUILD) -c -o $@ $(CFLAGS_FOR_BUILD) $<
testrandom: testrandom.o
$(LD_FOR_BUILD) -o $@ $(LDFLAGS_FOR_BUILD) $<
OMIT_TEST_RULE = 1
include $(SRCDIR)/common.mk
distclean clean: cleanlocal
.PHONY: cleanlocal
cleanlocal:
rm -f $(PROGS)
|