~martin31821/scion/libzlog

« back to all changes in this revision

Viewing changes to makefile

  • Committer: Martin Koppehel
  • Date: 2018-05-14 11:48:27 UTC
  • Revision ID: mkoppehel@embedded.enterprises-20180514114827-qzs123zrrt9rwp08
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Top level makefile, the real shit is at src/makefile
 
2
 
 
3
TARGETS=noopt 32bit
 
4
 
 
5
all:
 
6
        cd src && $(MAKE) $@
 
7
 
 
8
install:
 
9
        cd src && $(MAKE) $@
 
10
 
 
11
$(TARGETS):
 
12
        cd src && $(MAKE) $@
 
13
 
 
14
doc:
 
15
        cd doc && $(MAKE)
 
16
 
 
17
test:
 
18
        cd test && $(MAKE)
 
19
 
 
20
TAGS:
 
21
        find . -type f -name "*.[ch]" | xargs etags -
 
22
 
 
23
clean:
 
24
        cd src && $(MAKE) $@
 
25
        cd test && $(MAKE) $@
 
26
        cd doc && $(MAKE) $@
 
27
        rm -f TAGS
 
28
 
 
29
distclean: clean
 
30
 
 
31
dummy:
 
32
 
 
33
.PHONY: doc install test TAGS