CS计算机代考程序代写 b’2fe1cd3f583e699101f65fe0affe731ff398d5′

b’2fe1cd3f583e699101f65fe0affe731ff398d5′

blob 270�CC=gcc
CFLAGS=-I.
TARGET=simulator
DEPS = simulator.h gll.h fileIO.h dataStructures.h

%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS) $(TARGET): simulator.o gll.o fileIO.o $(CC) -o $(TARGET) simulator.o gll.o fileIO.o .PHONY: clean clean: rm -f *.o *.out $(TARGET)