CC=gcc
CFLAGS=-Wall

all:systeminfo2.c
	$(CC) $(CFLAGS) systeminfo2.c -o systeminfo2
clean:
	rm -f systeminfo2
