1
0
mirror of https://github.com/gryf/debian-pkgs.git synced 2026-02-15 04:45:47 +01:00

Added first 4 apps

This commit is contained in:
2018-04-22 17:22:14 +01:00
parent 6c0b3a3bf9
commit 09506c067e
12 changed files with 535 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
--- Makefile
+++ Makefile
@@ -32,14 +32,12 @@
OBJS = bubblemon.o
BUBBLEMON = bubblemon
-LDFLAGS = -shared -Wl
-
STRIP = strip
-CC = gcc
+CC ?= gcc
INSTALLMAN = -m 644
-
+LIBS = -lX11
# special things for Linux
ifeq ($(OS), Linux)
@@ -91,8 +89,8 @@
all: $(BUBBLEMON)
bubblemon: clean_obj
- $(CC) $(GTK2_CFLAGS) $(CFLAGS) -o $(BUBBLEMON) \
- $(LIBS) $(GTK2_LIBS) $(SRCS)
+ $(CC) $(LDFLAGS) $(GTK2_CFLAGS) $(CFLAGS) -o $(BUBBLEMON) \
+ $(SRCS) $(LIBS) $(GTK2_LIBS)
clean_obj:
rm -rf *.o