#
# Use GNU make to compile
#

include ../Make.defs

install: 
	$(CC) -c -I. -I../include my_rad.c 
	$(CC) -c -I. -I../include my_stubs.c 
	$(AR) my_rad.a my_rad.o my_stubs.o
	$(CP) my_rad.a ../lib

install_hdrs:
	$(CP) dev_env.h ../include/env
	$(CP) my_rad.h  ../include/env

clean:
	$(RM) *.o *.a

clobber: clean
	$(RM) *~
