# projekt: dxfbody

TARGET = dxfbody
SOURCE = dxfbody.c


all: $(TARGET)

$(TARGET): $(SOURCE)
	gcc -Wall $(SOURCE) -o $(TARGET)

