1
0
forked from Yadciel/c_tray

added winapi implementation draft

This commit is contained in:
Serge A. Zaitsev
2017-01-08 15:34:05 +02:00
parent 12e79be088
commit 6534a32a20
3 changed files with 130 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
ifeq ($(OS),Windows_NT)
TRAY_CFLAGS :=
TRAY_CFLAGS := -DTRAY_WINAPI=1
TRAY_LDFLAGS :=
else
UNAME_S := $(shell uname -s)
@@ -18,7 +18,6 @@ CFLAGS := -g -Wall $(TRAY_CFLAGS)
LDFLAGS := -g $(TRAY_LDFLAGS)
all: example
example: example.o
$(CC) $^ $(LDFLAGS) -o $@