Remove unwanted files

This commit is contained in:
Lakindu Akash 2020-10-04 15:54:03 +05:30
parent ef6794bec3
commit c968b8a54c
No known key found for this signature in database
GPG Key ID: 87D9889F7A634A38
2 changed files with 0 additions and 82 deletions

View File

@ -1,22 +0,0 @@
CC=gcc
CFLAGS=`pkg-config --cflags gtk+-3.0`
ODIR=../build
LIBS=`pkg-config --libs gtk+-3.0`
_OBJ = main.o
OBJ = $(patsubst %,$(ODIR)/%,$(_OBJ))
$(ODIR)/%.o: ui/%.c
$(CC) -c -o $@ $< $(CFLAGS)
wihotspot: $(OBJ)
$(CC) -o ui/$@ $^ $(CFLAGS) $(LIBS)
.PHONY: clean
clean:
rm -f $(ODIR)/*.o

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.22.1 -->
<interface>
<requires lib="gtk+" version="3.0"/>
<object class="GtkWindow" id="window">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="border_width">10</property>
<property name="title">Grid</property>
<child>
<placeholder/>
</child>
<child>
<object class="GtkGrid" id="grid">
<property name="visible">True</property>
<property name="can_focus">False</property>
<child>
<object class="GtkButton" id="quit">
<property name="label">Quit</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="receives_default">False</property>
<signal name="clicked" handler="quit_clicked_cb" object="window" swapped="no"/>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">1</property>
<property name="width">2</property>
</packing>
</child>
<child>
<object class="GtkButton" id="button1">
<property name="label" translatable="yes">button</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<signal name="clicked" handler="button1" object="window" swapped="no"/>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">0</property>
</packing>
</child>
<child>
<object class="GtkButton" id="button_new">
<property name="label" translatable="yes">button</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<signal name="clicked" handler="ss" object="window" swapped="no"/>
</object>
<packing>
<property name="left_attach">1</property>
<property name="top_attach">0</property>
</packing>
</child>
</object>
</child>
</object>
</interface>