TARGET := glx-dbl-bare LIBS := -lGL -lX11 all: $(TARGET) $(TARGET): $(TARGET).c $(CC) -o $@ $^ $(LIBS) clean: -rm -f *.o $(TARGET)