You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
160 B

  1. ifeq ($(OS),Windows_NT)
  2. LDFLAGS=
  3. else
  4. LDFLAGS=-ldl
  5. endif
  6. all: example.cpp ../../libShaderFile.h
  7. g++ -o example example.cpp $(LDFLAGS)
  8. clean:
  9. rm -rf *.exe