| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | # st - simple terminal
 | 
					
						
							|  |  |  | # See LICENSE file for copyright and license details.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | include config.mk | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | SRC = st.c | 
					
						
							|  |  |  | OBJ = ${SRC:.c=.o} | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | all: options st | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 23:49:15 +02:00
										 |  |  | options: options | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | 	@echo st build options: | 
					
						
							|  |  |  | 	@echo "CFLAGS   = ${CFLAGS}" | 
					
						
							|  |  |  | 	@echo "LDFLAGS  = ${LDFLAGS}" | 
					
						
							|  |  |  | 	@echo "CC       = ${CC}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-30 23:49:15 +02:00
										 |  |  | config.h: | 
					
						
							|  |  |  | 	cp config.def.h config.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | .c.o: | 
					
						
							|  |  |  | 	@echo CC $< | 
					
						
							|  |  |  | 	@${CC} -c ${CFLAGS} $< | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 02:33:38 +02:00
										 |  |  | ${OBJ}: config.h config.mk | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | st: ${OBJ} | 
					
						
							|  |  |  | 	@echo CC -o $@ | 
					
						
							|  |  |  | 	@${CC} -o $@ ${OBJ} ${LDFLAGS} | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | clean: | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | 	@echo cleaning | 
					
						
							|  |  |  | 	@rm -f st ${OBJ} st-${VERSION}.tar.gz | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | dist: clean | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | 	@echo creating dist tarball | 
					
						
							|  |  |  | 	@mkdir -p st-${VERSION} | 
					
						
							| 
									
										
										
										
											2010-08-28 03:18:22 +02:00
										 |  |  | 	@cp -R LICENSE Makefile README config.mk config.h st.info ${SRC} st-${VERSION} | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | 	@tar -cf st-${VERSION}.tar st-${VERSION} | 
					
						
							|  |  |  | 	@gzip st-${VERSION}.tar | 
					
						
							|  |  |  | 	@rm -rf st-${VERSION} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install: all | 
					
						
							|  |  |  | 	@echo installing executable file to ${DESTDIR}${PREFIX}/bin | 
					
						
							|  |  |  | 	@mkdir -p ${DESTDIR}${PREFIX}/bin | 
					
						
							|  |  |  | 	@cp -f st ${DESTDIR}${PREFIX}/bin | 
					
						
							|  |  |  | 	@chmod 755 ${DESTDIR}${PREFIX}/bin/st | 
					
						
							| 
									
										
										
										
											2010-08-28 03:18:22 +02:00
										 |  |  | 	@tic -s st.info | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | uninstall: | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | 	@echo removing executable file from ${DESTDIR}${PREFIX}/bin | 
					
						
							|  |  |  | 	@rm -f ${DESTDIR}${PREFIX}/bin/st | 
					
						
							| 
									
										
										
										
											2008-05-20 10:03:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 13:17:09 +01:00
										 |  |  | .PHONY: all options clean dist install uninstall |