summaryrefslogtreecommitdiffstats
path: root/ar/Makefile
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy.zurcher@heraeus.com>2014-01-06 15:39:05 +0100
committerJérémy Zurcher <jeremy.zurcher@heraeus.com>2014-01-06 15:39:05 +0100
commit09397c778731916891d660ac4ebbb6f3ac5a15fb (patch)
tree9ec6b32f0a32f2744d173ca0fe91bc5ea2f2cb50 /ar/Makefile
downloaddjb-way-09397c778731916891d660ac4ebbb6f3ac5a15fb.zip
djb-way-09397c778731916891d660ac4ebbb6f3ac5a15fb.tar.gz
Initial commit
Diffstat (limited to 'ar/Makefile')
-rw-r--r--ar/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/ar/Makefile b/ar/Makefile
new file mode 100644
index 0000000..e1fa243
--- /dev/null
+++ b/ar/Makefile
@@ -0,0 +1,27 @@
+DIR=..
+
+include ${DIR}/Makefile_base
+
+arch.o : compile arch.c arch.h
+ @./compile arch.c
+
+arch.a : load arch.o
+ @./load s arch.a arch.o
+
+# HIGH LEVEL SPECIFIC TARGETS
+
+SUBDIR=
+
+arch: buildarch
+ -@./buildarch ${SUBDIR}
+
+build: arch.a
+
+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
+