summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
blob: 93c98d9efe3cc7dce2dce1502daf094a9df5b5e9 (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
DIR=..

include ${DIR}/Makefile_base

mylib.o : compile mylib.c mylib.h
	@./compile mylib.c

libtest.so : load mylib.o
	@./load d libtest.so mylib.o

# HIGH LEVEL SPECIFIC TARGETS

SUBDIR=

arch: buildarch
	-@./buildarch ${SUBDIR}

build: libtest.so

doc : doxy_conf
	@echo -e "$(CYAN)calling doxygen$(NORM)"
	@doxygen doxy_conf
	@echo -e "$(CYAN)done.$(NORM)"

clean: cleanstd
	@if [ -f main ] ; then rm main; fi