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
159 B

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