winlivebg_test1
annotate Makefile @ 2:a9025f31ae2d
sortof works, testing with colcycle hack
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 28 Oct 2019 16:07:25 +0200 |
parents | d6d791557330 |
children |
rev | line source |
---|---|
nuclear@0 | 1 src = $(wildcard src/*.c) |
nuclear@0 | 2 obj = $(src:.c=.o) |
nuclear@2 | 3 bin = winlivebg_test.exe |
nuclear@0 | 4 |
nuclear@2 | 5 CFLAGS = -pedantic -Wall -g -O3 |
nuclear@0 | 6 LDFLAGS = -mwindows -lopengl32 -lwinmm |
nuclear@0 | 7 |
nuclear@0 | 8 $(bin): $(obj) |
nuclear@0 | 9 $(CC) -o $@ $(obj) $(LDFLAGS) |
nuclear@0 | 10 |
nuclear@0 | 11 .PHONY: clean |
nuclear@0 | 12 clean: |
nuclear@0 | 13 rm -f $(obj) $(bin) |