
targets = ps mini-shell malloc clock assert  \
          printf       test_vfprintf  \
	  test_getopt  test_setjmp    \
          test_pwd     test_grp

all : $(targets)


$(targets)  : $$@.C
	CC -o $@ $@.C

clean :
	/bin/rm -f $(targets)
