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

13 lines
252 B
Makefile
Raw Normal View History

2016-02-01 14:03:21 +01:00
all : glslview glslwrite
2016-02-02 08:20:15 +01:00
USE_INOTIFY = -DUSE_INOTIFY
CFLAGS = -O3 -Wall $(USE_INOTIFY)
2016-02-02 09:00:05 +01:00
LIBS = -lSDL2 -lGL -lGLEW -lm
2016-02-02 08:20:15 +01:00
2016-02-01 10:19:13 +01:00
glslview : glslview.c
2016-02-02 09:00:05 +01:00
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
2016-02-01 14:03:21 +01:00
2016-02-01 14:39:58 +01:00
glslwrite : glslview.c
2016-02-02 09:00:05 +01:00
$(CC) $(CFLAGS) -DGLSLWRITE -o $@ $^ $(LIBS) -lpng