mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
Dactyloidae Milsko Widget initial commit
This commit is contained in:
parent
2e7355c0ef
commit
91b45c0d14
410 changed files with 204246 additions and 0 deletions
24
widget/milsko/milskosrc/tools/Makefile
Normal file
24
widget/milsko/milskosrc/tools/Makefile
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
CC = gcc
|
||||
CFLAGS = `pkg-config --cflags freetype2` -I../include
|
||||
LDFLAGS =
|
||||
LIBS = `pkg-config --libs freetype2`
|
||||
|
||||
.PHONY: all clean
|
||||
.SUFFIXES: .c .o
|
||||
|
||||
all: fuzzer font icon-converter icon-converter
|
||||
|
||||
fuzzer: fuzzer.o
|
||||
$(CC) -g -L../src/ -Wl,-R../src -o $@ fuzzer.o -lMw
|
||||
|
||||
font: font.o
|
||||
$(CC) $(LDFLAGS) -o $@ font.o $(LIBS)
|
||||
|
||||
icon-converter: icon-converter.o
|
||||
$(CC) -o $@ icon-converter.o -lm
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
clean:
|
||||
rm -f *.o font fuzzer icon-converter
|
||||
Loading…
Add table
Add a link
Reference in a new issue