CC = gcc
CFLAGS = $(CFLAGSX) -W -Wall

.phony: all debug normal opti clean

all: phonesim2

phonesim2: phonesim2.c
	$(CC) $(CFLAGS) -o phonesim2 phonesim2.c

clean:
	rm -rf phonesim2
