This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
glslview/Makefile

17 lines
387 B
Makefile

all : glslview glslwrite
ifeq ($(shell uname -s),Linux)
USE_INOTIFY ?= -DUSE_INOTIFY
endif
CFLAGS ?= -O3 -Wall
LIBS := -lSDL2 -lGL -lGLEW -lm
glslview : glslview.c common.c common.h
$(CC) $(CFLAGS) $(USE_INOTIFY) -o $@ glslview.c common.c $(LIBS)
glslwrite : glslwrite.c common.c common.h
$(CC) $(CFLAGS) -o $@ glslwrite.c common.c $(LIBS) -lpng
clean :
rm -f glslview glslwrite