Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Part Three of a simple GUI mechanism to control your SSH and Apache web servers
- # MD Harrington London Bexleyheath Kent DA6 8NP UK
- # Links to to this plus Makfile you can find on git hub at this address https://github.com/markh2024/GTKServerControl
- # More at https://www.facebook.com/mark.harrington.14289/
- # Part two contains the glade file for this application link is @ https://pastebin.com/Tn3jmiqH
- CC = gcc
- CFLAGS = `pkg-config --cflags gtk+-3.0` -rdynamic -g
- LIBS = `pkg-config --libs gtk+-3.0`
- SRCS = ServerGui.c
- OBJS = $(SRCS:.c=.o)
- EXEC = Servercontol
- all: $(EXEC)
- $(EXEC): $(OBJS)
- $(CC) -o $(EXEC) $(OBJS) $(LIBS)
- %.o: %.c
- $(CC) $(CFLAGS) -c $< -o $@
- clean:
- rm -f $(EXEC) $(OBJS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement