
CFLAGS=-g -D_POSIX_C_SOURCE=200112L

energyMonitor: energyMonitor.c ezxml/ezxml.o
	$(CC) $(CFLAGS) -o energyMonitor energyMonitor.c ezxml/ezxml.o


ezxml/ezxml.o:
	$(CC) -c -o ezxml/ezxml.o ezxml/ezxml.c


clean:
	rm -f energyMonitor

