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

12 lines
252 B
Makefile

all : glslview glslwrite
USE_INOTIFY = -DUSE_INOTIFY
CFLAGS = -O3 -Wall $(USE_INOTIFY)
LIBS = -lSDL2 -lGL -lGLEW -lm
glslview : glslview.c
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
glslwrite : glslview.c
$(CC) $(CFLAGS) -DGLSLWRITE -o $@ $^ $(LIBS) -lpng