aboutsummaryrefslogtreecommitdiff
path: root/i18n/fr_FR/projects/bucts/sources/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'i18n/fr_FR/projects/bucts/sources/Makefile')
-rw-r--r--i18n/fr_FR/projects/bucts/sources/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/i18n/fr_FR/projects/bucts/sources/Makefile b/i18n/fr_FR/projects/bucts/sources/Makefile
deleted file mode 100644
index b5f43d5f..00000000
--- a/i18n/fr_FR/projects/bucts/sources/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-CC:=gcc
-OBJ:=bucts.o
-VERSION:=withoutgit
-
-ifeq ($(shell uname), FreeBSD)
- CFLAGS = -I/usr/local/include
- LDFLAGS = -L/usr/local/lib
-endif
-
-all: bucts
-
-bucts: $(OBJ)
- $(CC) -o $@ $(OBJ) $(LDFLAGS) -lpci
-
-%.o: %.c
- $(CC) $(CFLAGS) -DVERSION='"$(VERSION)"' -c $<
-
-.PHONY: clean
-clean:
- rm -f bucts $(OBJ)