- OBJS = mytest.o matrix.o FEV.o
- INCS = FEVtypes.h FEV.h
- FLAGS = -g
- runlongtest: $(OBJS)
- gcc -o runmytest $(FLAGS) $(OBJS)
- longtest.o: longtest.c $(INCS)
- gcc -c -g mytest.c
- FEV.o: FEV.c $(INCS)
- gcc -c -g FEV.c
- matrix.o: matrix.c $(INCS)
- gcc -c -g matrix.c
- clean:
- rm *.o
|