Compare commits

...

3 commits

Author SHA1 Message Date
sam 49571e72be use extension on binaries 2024-05-05 18:52:40 +12:00
sam 2d96b757c2 remove old include 2024-05-05 18:50:37 +12:00
sam ea1b45d867 update 2024-05-05 18:50:07 +12:00
3 changed files with 2 additions and 2 deletions

View file

@ -4,11 +4,11 @@ CFLAGS = -O3 -I../include
LDFLAGS = -L ../ -lglfw -lgearlib -lm
CFILES=$(shell find -L * -type f -name '*.c')
BINARIES=$(CFILES:.c=)
BINARIES=$(CFILES:.c=.exe)
all: $(BINARIES)
%: %.c
%.exe: %.c
$(CC) $< -o $@ $(CFLAGS) $(LDFLAGS)
clean:

View file

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.