Added the Unix build rules.
This commit is contained in:
parent
aa802768a4
commit
47a4bd3ae7
|
@ -54,4 +54,4 @@ $(OBJDIR):
|
||||||
mkdir -p $(OBJDIR)
|
mkdir -p $(OBJDIR)
|
||||||
|
|
||||||
ui.h: ui.idl
|
ui.h: ui.idl
|
||||||
idl2h < ui.h > ui.idl
|
idl2h < ui.idl > ui.h
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
OSCFILES = \
|
||||||
|
alloc.c \
|
||||||
|
button.c \
|
||||||
|
checkbox.c \
|
||||||
|
entry.c \
|
||||||
|
init.c \
|
||||||
|
label.c \
|
||||||
|
main.c \
|
||||||
|
newcontrol.c \
|
||||||
|
parent.c \
|
||||||
|
tab.c \
|
||||||
|
util.c \
|
||||||
|
window.c
|
||||||
|
|
||||||
|
xCFLAGS += `pkg-config --cflags gtk+-3.0`
|
||||||
|
xLDFLAGS += `pkg-config --libs gtk+-3.0`
|
||||||
|
|
||||||
|
OUT = new
|
Loading…
Reference in New Issue