summaryrefslogtreecommitdiffstats
path: root/ar/Makefile
diff options
context:
space:
mode:
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
+