libenv is a library for modifying environment variables under UNIX like operating systems. Included is a wrapper library called posix_env that implements a POSIX compliant interface.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
libenv-1.0.0/Makefile

17 lines
297 B

all: libenv_test
libenv.o: libenv.h libenv.c
c99 -U__INLINE_INTRINSICS -U__MATH_HAS_NO_SIDE_EFFECTS -c -o libenv.o libenv.c
libenv_test: libenv_test.c libenv.o
c99 -U__INLINE_INTRINSICS -U__MATH_HAS_NO_SIDE_EFFECTS -o libenv_test libenv_test.c libenv.o
clean:
rm libenv.o libenv_test