18 lines
367 B
Plaintext
18 lines
367 B
Plaintext
--- Makefile 2002-11-26 13:20:36.000000000 +0100
|
|
+++ Makefile 2002-11-26 13:21:12.000000000 +0100
|
|
@@ -7,13 +7,7 @@
|
|
sudo python -i ./run.py
|
|
|
|
$(PLUG).so: $(PLUG).o
|
|
- ld -shared -o $@ $<
|
|
-
|
|
-.c.s:
|
|
- gcc -O6 -I/usr/local/include -S $<
|
|
-
|
|
-.c.o:
|
|
- gcc -O2 -I/usr/local/include -c $<
|
|
+ $(CC) -shared $(CFLAGS) -o $@ $<
|
|
|
|
install: all
|
|
install -m 644 $(PLUG).so $(DEST)
|