makefile 286 B

123456789101112131415
  1. OBJS = mytest.o matrix.o FEV.o
  2. INCS = FEVtypes.h FEV.h
  3. FLAGS = -g
  4. runlongtest: $(OBJS)
  5. gcc -o runmytest $(FLAGS) $(OBJS)
  6. longtest.o: longtest.c $(INCS)
  7. gcc -c -g mytest.c
  8. FEV.o: FEV.c $(INCS)
  9. gcc -c -g FEV.c
  10. matrix.o: matrix.c $(INCS)
  11. gcc -c -g matrix.c
  12. clean:
  13. rm *.o