aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 65e5336..50c1dec 100644
--- a/Makefile
+++ b/Makefile
@@ -9,12 +9,12 @@ RPM=$(HOME)/rpm
all: transfug_oe
# for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
-transfug_oe: transfug_oe.c
- $(CC) $(CFLAGS) -o transfug_oe transfug_oe.c
+transfug_oe: transfug_oe.o
+ $(CC) $(CFLAGS) -o transfug_oe transfug_oe.o
clean:
# $(MAKE) -C po $@
- rm -f core transfug_oe
+ rm -f core transfug_oe *~
# for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
install: all
@@ -39,7 +39,7 @@ dis: clean
rpm: dis ../$(NAME)-$(VERSION).tar.bz2 $(RPM)
cp -f ../$(NAME)-$(VERSION).tar.bz2 $(RPM)/SOURCES
- cp -f *.xpm.bz2 $(RPM)/SOURCES
+ #cp -f *.xpm.bz2 $(RPM)/SOURCES
cp -f $(NAME).spec $(RPM)/SPECS/
-rpm -ba --clean --rmsource $(NAME).spec
rm -f ../$(NAME)-$(VERSION).tar.bz2