Browse code

Initial commit

Dario Rodriguez authored on 02/06/2024 20:53:59
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+CC=gcc
2
+CFLAGS=-Wall -g
3
+LDFLAGS=
4
+
5
+all: test_libexec
6
+
7
+libexec.o: libexec.c libexec.h
8
+
9
+test_libexec: test_libexec.c libexec.o
10
+	$(CC) $(CFLAGS) $(LDFLAGS) test_libexec.c libexec.o -o test_libexec
11
+
12
+clean:
13
+	rm -f libexec.o test_libexec