Skip to content

Commit

Permalink
Added makefile to build lib
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@694 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
henjo committed Jan 25, 2002
1 parent bdcc120 commit 221facb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions c_runtime/Makefile
@@ -0,0 +1,14 @@
CC = gcc
AR = ar -ru
CFLAGS = -Wall -ansi -pedantic



OBJS = boolean_array.o index_spec.o integer_array.o memory_pool.o real_array.o string_array.o

all : libc_runtime.a


libc_runtime.a : $(OBJS)
$(AR) $@ $(OBJS)

0 comments on commit 221facb

Please sign in to comment.