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

18 lines
387 B
Makefile
Raw Permalink Normal View History

2016-02-01 14:03:21 +01:00
all : glslview glslwrite
2016-02-06 11:07:16 +01:00
ifeq ($(shell uname -s),Linux)
USE_INOTIFY ?= -DUSE_INOTIFY
endif
2016-02-02 08:20:15 +01:00
2016-02-06 11:07:16 +01:00
CFLAGS ?= -O3 -Wall
LIBS := -lSDL2 -lGL -lGLEW -lm
2016-02-02 08:20:15 +01:00
2016-02-03 12:53:39 +01:00
glslview : glslview.c common.c common.h
2016-02-06 11:07:16 +01:00
$(CC) $(CFLAGS) $(USE_INOTIFY) -o $@ glslview.c common.c $(LIBS)
2016-02-01 14:03:21 +01:00
2016-02-03 12:53:39 +01:00
glslwrite : glslwrite.c common.c common.h
$(CC) $(CFLAGS) -o $@ glslwrite.c common.c $(LIBS) -lpng
2016-02-06 11:07:16 +01:00
clean :
rm -f glslview glslwrite